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

@ -1,6 +1,10 @@
Version 1.3.35 (in progress)
============================
03/26/2008: wsfulton
[Python] Apply patch #1925702 from Casey Raymondson which removes warning 512
for std::vector wrappers.
03/26/2008: olly
[Python] Apply GCC 4.3 warnings patch from Philipp Thomas
(SF#1925122).

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