more fixes for pointer
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5824 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
811a5065c3
commit
49a09a63fb
6 changed files with 27 additions and 5 deletions
|
|
@ -138,7 +138,7 @@ namespace std {
|
|||
%typemap_traits_ptr(SWIG_CCode(PAIR), std::pair<T,U* >);
|
||||
|
||||
pair();
|
||||
pair(const T& __a, U* __b);
|
||||
pair(T __a, U* __b);
|
||||
pair(const pair& __p);
|
||||
|
||||
T first;
|
||||
|
|
@ -171,7 +171,7 @@ namespace std {
|
|||
%typemap_traits_ptr(SWIG_CCode(PAIR), std::pair<T*,U >);
|
||||
|
||||
pair();
|
||||
pair(T* __a, const U& __b);
|
||||
pair(T* __a, U __b);
|
||||
pair(const pair& __p);
|
||||
|
||||
T* first;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue