Fixed bug 2811549: const vs. non-const iterators for STL types.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12645 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Stefan Zager 2011-04-29 22:36:06 +00:00
commit a74909f77b
2 changed files with 8 additions and 4 deletions

View file

@ -4,6 +4,10 @@ See the RELEASENOTES file for a summary of changes in each release.
Version 2.0.4 (in progress)
===========================
2011-04-29: szager
Fixed bug 2811549: return non-const iterators from STL
methods begin(), end(), rbegin(), rend().
2011-04-25: szager
Fixed bug 1498929: Access to member fields in map elements

View file

@ -26,10 +26,10 @@
class const_iterator;
class const_reverse_iterator;
const_iterator begin() const;
const_iterator end() const;
const_reverse_iterator rbegin() const;
const_reverse_iterator rend() const;
iterator begin();
iterator end();
reverse_iterator rbegin();
reverse_iterator rend();
#endif
%enddef