Removed typedef from li_std_list test as it's not expected to work properly in templated code
This commit is contained in:
parent
e561a78205
commit
c78a005a29
1 changed files with 2 additions and 6 deletions
|
|
@ -14,12 +14,8 @@ namespace std {
|
|||
|
||||
%template(DoubleList) std::list<double>;
|
||||
|
||||
%inline %{
|
||||
typedef float Real;
|
||||
%}
|
||||
|
||||
namespace std {
|
||||
%template(RealList) list<Real>;
|
||||
%template(RealList) list<float>;
|
||||
}
|
||||
|
||||
%inline %{
|
||||
|
|
@ -53,4 +49,4 @@ enum Fruit {
|
|||
%template(StructPtrList) std::list<Struct*>;
|
||||
%template(StructConstPtrList) std::list<const Struct *>;
|
||||
|
||||
%template(FruitList) std::list<Fruit>;
|
||||
%template(FruitList) std::list<enum Fruit>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue