mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-29 03:27:45 +00:00
fix severe regression involving character arrays (fixes #137)
This commit is contained in:
@@ -22,6 +22,7 @@ void init_ex10(py::module &);
|
||||
void init_ex11(py::module &);
|
||||
void init_ex12(py::module &);
|
||||
void init_ex13(py::module &);
|
||||
void init_issues(py::module &);
|
||||
|
||||
PYBIND11_PLUGIN(example) {
|
||||
py::module m("example", "pybind example plugin");
|
||||
@@ -39,6 +40,7 @@ PYBIND11_PLUGIN(example) {
|
||||
init_ex11(m);
|
||||
init_ex12(m);
|
||||
init_ex13(m);
|
||||
init_issues(m);
|
||||
|
||||
return m.ptr();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user