2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 07:02:15 +00:00

Fixed no proxy handling for containers of primitive types.

[SVN r19484]
This commit is contained in:
Joel de Guzman
2003-08-07 08:45:57 +00:00
parent 90c69d961e
commit c014dee6dc
2 changed files with 42 additions and 20 deletions

View File

@@ -39,5 +39,10 @@ BOOST_PYTHON_MODULE(vector_indexing_suite_ext)
class_<std::vector<X> >("XVec")
.def(vector_indexing_suite<std::vector<X> >())
;
// Compile check only...
class_<std::vector<float> >("FloatVec")
.def(vector_indexing_suite<std::vector<float> >())
;
}