scilab: fix li_std_combinations test
This commit is contained in:
parent
87f02c4d00
commit
772023efd9
1 changed files with 10 additions and 2 deletions
|
|
@ -9,15 +9,23 @@
|
|||
%template(PairIntString) std::pair<int, std::string>;
|
||||
|
||||
%template(VectorPairIntString) std::vector< std::pair<int, std::string> >;
|
||||
%template(PairIntVectorString) std::pair< int, std::vector<std::string> >;
|
||||
|
||||
%template(VectorVectorString) std::vector< std::vector<std::string> >;
|
||||
|
||||
#if not defined(SWIGSCILAB)
|
||||
%template(PairIntVectorString) std::pair< int, std::vector<std::string> >;
|
||||
%template(PairIntPairIntString) std::pair< int, std::pair<int, std::string> >;
|
||||
#else
|
||||
%template(PairIntVecStr) std::pair< int, std::vector<std::string> >;
|
||||
%template(PairIntPairIntStr) std::pair< int, std::pair<int, std::string> >;
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(SWIGCSHARP) || defined(SWIGD)
|
||||
// Checks macro containing a type with a comma
|
||||
SWIG_STD_VECTOR_ENHANCED(std::pair< double, std::string >)
|
||||
#endif
|
||||
|
||||
%template(PairDoubleString) std::pair< double, std::string >;
|
||||
%template(VectorPairDoubleString) std::vector< std::pair<double, std::string> >;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue