Fix 'not defined SWIGSCILAB' in testcases

This commit is contained in:
William S Fulton 2015-01-26 21:38:17 +00:00
commit ee4aa853b8
4 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@
%template(VectorPairIntString) std::vector< std::pair<int, std::string> >;
%template(VectorVectorString) std::vector< std::vector<std::string> >;
#if not defined(SWIGSCILAB)
#if !defined(SWIGSCILAB)
%template(PairIntVectorString) std::pair< int, std::vector<std::string> >;
%template(PairIntPairIntString) std::pair< int, std::pair<int, std::string> >;
#else