Make vector<size_t> opaque

release/4.3a0
Amado Antonini 2022-07-13 08:33:09 -04:00
parent b4fdda4740
commit 01ea316336
1 changed files with 3 additions and 1 deletions

View File

@ -10,4 +10,6 @@
* Without this they will be automatically converted to a Python object, and all
* mutations on Python side will not be reflected on C++.
*/
#include <pybind11/stl.h>
#include <pybind11/stl.h>
PYBIND11_MAKE_OPAQUE(std::vector<size_t>);