correct some function declarations to match the standard - VC++ fails otherwise

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8424 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-01-14 00:20:37 +00:00
commit 2b805e684e

View file

@ -16,9 +16,9 @@
void erase(iterator pos);
void erase(iterator first, iterator last);
iterator find(const key_type& x) const;
iterator lower_bound(const key_type& x) const;
iterator upper_bound(const key_type& x) const;
iterator find(const key_type& x);
iterator lower_bound(const key_type& x);
iterator upper_bound(const key_type& x);
std::pair<iterator,iterator> equal_range(const key_type& x);
#endif
%enddef