From 6abe1ccf2d696ee0c3b06c9725cb1eefcb3ce597 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 14 Jan 2006 00:20:37 +0000 Subject: [PATCH] correct some function declarations to match the standard - VC++ fails otherwise git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8424 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/std/std_set.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/std/std_set.i b/Lib/std/std_set.i index 4d81fa460..685084174 100644 --- a/Lib/std/std_set.i +++ b/Lib/std/std_set.i @@ -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 equal_range(const key_type& x); #endif %enddef