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:
parent
49c61cd129
commit
6a01528488
1 changed files with 8 additions and 8 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue