Fix 'not defined SWIGSCILAB' in testcases

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

View File

@ -344,7 +344,7 @@ template <class T1, class T2> struct Base {
};
%}
#if not defined(SWIGSCILAB)
#if !defined(SWIGSCILAB)
%template(BaseIntDouble) Base<int, double>;
#else
%template(BaseIDbl) Base<int, double>;

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

View File

@ -32,7 +32,7 @@ struct OuterStructNamed {
%}
#if not defined(SWIGSCILAB)
#if !defined(SWIGSCILAB)
%inline %{

View File

@ -115,7 +115,7 @@ namespace ns {
}
%}
#if not defined(SWIGSCILAB)
#if !defined(SWIGSCILAB)
%extend ns::OuterClass {
%template(T_OuterClassInner2Double) Inner2<double>;
}