Char and unsigned-char specialization added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5348 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2abb47a3fa
commit
5e161fa7cd
8 changed files with 20 additions and 1 deletions
|
|
@ -422,9 +422,12 @@ namespace std {
|
|||
%enddef
|
||||
|
||||
specialize_std_vector(bool, Tcl_GetBoolFromObj, Tcl_NewBooleanObj);
|
||||
specialize_std_vector(char, Tcl_GetIntFromObj,Tcl_NewIntObj);
|
||||
specialize_std_vector(int, Tcl_GetIntFromObj,Tcl_NewIntObj);
|
||||
specialize_std_vector(short, SwigInt_As<short>, Tcl_NewIntObj);
|
||||
specialize_std_vector(long, SwigInt_As<long>, Tcl_NewIntObj);
|
||||
specialize_std_vector(unsigned char,
|
||||
SwigInt_As<unsigned int>, Tcl_NewIntObj);
|
||||
specialize_std_vector(unsigned int,
|
||||
SwigInt_As<unsigned int>, Tcl_NewIntObj);
|
||||
specialize_std_vector(unsigned short,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue