fix std::vector<const int*>, reported by tagna@gaia.ecs.csus.edu

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9084 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-05-04 05:24:41 +00:00
commit 553c551fef
2 changed files with 11 additions and 0 deletions

View file

@ -122,3 +122,7 @@ std::vector<std::string> vecStr(std::vector<std::string> v) {
%template(pyvector) std::vector<swig::PyObject_ptr>;
namespace std {
%template(ConstIntVector) vector<const int *>;
}