diff options
Diffstat (limited to 'raul/Table.hpp')
-rw-r--r-- | raul/Table.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Table.hpp b/raul/Table.hpp index fa3848c..a7f7c39 100644 --- a/raul/Table.hpp +++ b/raul/Table.hpp @@ -89,7 +89,7 @@ public: const_iterator find(const_iterator start, const_iterator end, const K& key) const; const_iterator find(const K& key) const; - iterator find(iterator start, iterator end, const K& key); + iterator find(const_iterator start, const_iterator end, const K& key); iterator find(const K& key); const_iterator find_range_end(const_iterator left, bool (*comp)(const K&,const K&)) const; |