Fixed SWIG_EXPORT_ITERATOR_METHODS in std_set.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9823 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Gonzalo Garramuno 2007-05-18 23:32:55 +00:00
commit 6a01528488

View file

@ -16,19 +16,19 @@
void swap(set& v);
class const_iterator;
class const_reverse_iterator;
const_iterator begin() const;
const_iterator end() const;
const_reverse_iterator rbegin();
const_reverse_iterator rend();
size_type erase(const key_type& x);
size_type count(const key_type& x) const;
#ifdef SWIG_EXPORT_ITERATOR_METHODS
class const_iterator;
class const_reverse_iterator;
const_iterator begin() const;
const_iterator end() const;
const_reverse_iterator rbegin();
const_reverse_iterator rend();
void erase(const_iterator pos);
void erase(const_iterator first, const_iterator last);