diff --git a/CHANGES.current b/CHANGES.current index 1a5fcf804..2536ac209 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -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). diff --git a/Lib/std/std_container.i b/Lib/std/std_container.i index 80fb7fe26..66a9efa79 100644 --- a/Lib/std/std_container.i +++ b/Lib/std/std_container.i @@ -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