mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 05:05:11 +00:00
fix segfault in test suite due to typo (fixes #586)
This commit is contained in:
parent
0e49c02213
commit
cd7eacc584
@ -71,7 +71,7 @@ test_initializer pickling([](py::module &m) {
|
||||
throw std::runtime_error("Invalid state!");
|
||||
/* Cast and construct */
|
||||
auto& p = self.cast<PickleableWithDict&>();
|
||||
new (&p) Pickleable(t[0].cast<std::string>());
|
||||
new (&p) PickleableWithDict(t[0].cast<std::string>());
|
||||
|
||||
/* Assign C++ state */
|
||||
p.extra = t[1].cast<int>();
|
||||
|
Loading…
Reference in New Issue
Block a user