commit | 5dd33d880da052b195caef20cbbbd31a57341dca | [log] [tgz] |
---|---|---|
author | Wenzel Jakob <wenzel.jakob@epfl.ch> | Mon May 30 11:28:21 2016 +0200 |
committer | Wenzel Jakob <wenzel.jakob@epfl.ch> | Mon May 30 11:28:21 2016 +0200 |
tree | d56dba27117cff58cb368cb1ab33e88b179f7885 | |
parent | dca6b04c5f65ba9461d56356fb542d69f0dec600 [diff] [blame] |
fix issues with std::vector<bool> overload in STL (fixes #216)
diff --git a/example/example17.cpp b/example/example17.cpp index 8ae4cad..8fd4ad6 100644 --- a/example/example17.cpp +++ b/example/example17.cpp
@@ -29,6 +29,7 @@ .def(pybind11::init<int>()); pybind11::bind_vector<unsigned int>(m, "VectorInt"); + pybind11::bind_vector<bool>(m, "VectorBool"); pybind11::bind_vector<El>(m, "VectorEl");