Apply patch #1925702 from Casey Raymondson which removeswarning 512 for std::vector wrappers

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10322 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2008-03-26 20:25:56 +00:00
commit aa4d91b319
2 changed files with 4 additions and 4 deletions

View file

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