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