diff options
author | Marcelo Matus <mmatus@acms.arizona.edu> | 2004-10-10 17:58:14 +0000 |
---|---|---|
committer | Marcelo Matus <mmatus@acms.arizona.edu> | 2004-10-10 17:58:14 +0000 |
commit | 409e17e94aa12487a98b59424e1756fd0a6ce6d0 (patch) | |
tree | dd4b470c5899e638432a2f26db59482a79b4cb92 /Lib/std/std_multiset.i | |
parent | 1d0d3211240db3e240f28a920898491b39c7c1b0 (diff) | |
download | swig-409e17e94aa12487a98b59424e1756fd0a6ce6d0.tar.gz |
add guards for swig/language extra methods and comments
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6386 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Lib/std/std_multiset.i')
-rw-r--r-- | Lib/std/std_multiset.i | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/std/std_multiset.i b/Lib/std/std_multiset.i index bb7b79939..7ea3550ec 100644 --- a/Lib/std/std_multiset.i +++ b/Lib/std/std_multiset.i @@ -72,7 +72,11 @@ namespace std { %typemap_traits_ptr(SWIG_TYPECHECK_MULTISET, std::multiset<T >); %std_multiset_methods(multiset); - %swig_container_methods(std::multiset<T >); + +#ifdef %swig_multiset_methods + // Add swig/language extra methods + %swig_multiset_methods(std::multiset<T >); +#endif }; } |