fix old std_pair version

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5760 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-03-17 10:45:19 +00:00
commit 2537ee1c34
2 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ namespace std {
}
}
%typemap_traits_ptr(SWIG_CCode(PAIR), std::pair<T,U >);
%typemap_traits(SWIG_CCode(PAIR), std::pair<T,U >);
T first;
U second;
@ -98,7 +98,7 @@ namespace std {
}
}
%typemap_traits_ptr(SWIG_CCode(PAIR), std::pair<T,U* >);
%typemap_traits(SWIG_CCode(PAIR), std::pair<T,U* >);
T first;
U* second;