diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-08-01 12:01:24 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-08-01 12:01:24 +0000 |
commit | 98fb391ab137ee056b1995a2cfb7b2f64f390114 (patch) | |
tree | 88b6b94a3e0ac2beafa23af3d3c283821e57ad03 /package/uclibc++/patches/010-gcc47x_support.patch | |
parent | 3d46f81fe053a546cd7a368cf84cf9dac31807d9 (diff) |
[package] uclibc++: update to 0.2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32929 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uclibc++/patches/010-gcc47x_support.patch')
-rw-r--r-- | package/uclibc++/patches/010-gcc47x_support.patch | 126 |
1 files changed, 0 insertions, 126 deletions
diff --git a/package/uclibc++/patches/010-gcc47x_support.patch b/package/uclibc++/patches/010-gcc47x_support.patch deleted file mode 100644 index a000813b4..000000000 --- a/package/uclibc++/patches/010-gcc47x_support.patch +++ /dev/null @@ -1,126 +0,0 @@ ---- a/include/associative_base -+++ b/include/associative_base -@@ -511,7 +511,7 @@ - - pair<iterator, bool> insert(const value_type& x){ - pair<iterator, bool> retval; -- iterator location = lower_bound(value_to_key(x)); -+ iterator location = lower_bound(this->value_to_key(x)); - retval.second = true; - //Empty list or need to insert at end - if(end() == location){ -@@ -520,7 +520,7 @@ - return retval; - } - //Something in the list -- if(c(value_to_key(x), value_to_key(*location))){ -+ if(c(this->value_to_key(x), this->value_to_key(*location))){ - location = backing.insert(location.base_iterator(), x); - retval.first = location; - }else{ -@@ -604,7 +604,7 @@ - } - - iterator insert(const value_type& x){ -- iterator location = lower_bound(value_to_key(x)); -+ iterator location = lower_bound(this->value_to_key(x)); - - if(location == begin()){ - backing.push_front(x); ---- a/include/fstream -+++ b/include/fstream -@@ -72,9 +72,9 @@ - pbuffer = new char_type[__UCLIBCXX_IOSTREAM_BUFSIZE__]; - gbuffer = new char_type[__UCLIBCXX_IOSTREAM_BUFSIZE__]; - -- setp(pbuffer, pbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); -+ this->setp(pbuffer, pbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); - //Position get buffer so that there is no data available -- setg(gbuffer, gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__, -+ this->setg(gbuffer, gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__, - gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); - } - ---- a/include/string -+++ b/include/string -@@ -426,7 +426,7 @@ - } - _UCXXEXPORT size_type find (Ch c, size_type pos = 0) const{ - for(size_type i = pos; i < length(); ++i){ -- if(operator[](i) == c){ -+ if(this->operator[](i) == c){ - return i; - } - } -@@ -456,7 +456,7 @@ - _UCXXEXPORT size_type find_first_of(const basic_string& str, size_type pos = 0) const{ - for(size_type i = pos; i < length(); ++i){ - for(size_type j = 0; j < str.length() ; ++j){ -- if( Tr::eq(str[j], operator[](i)) ){ -+ if( Tr::eq(str[j], this->operator[](i)) ){ - return i; - } - } -@@ -472,7 +472,7 @@ - } - _UCXXEXPORT size_type find_first_of(Ch c, size_type pos = 0) const{ - for(size_type i = pos; i< length(); ++i){ -- if( Tr::eq(operator[](i), c) ){ -+ if( Tr::eq(this->operator[](i), c) ){ - return i; - } - } -@@ -485,7 +485,7 @@ - } - for(size_type i = pos; i >0 ; --i){ - for(size_type j = 0 ; j < str.length(); ++j){ -- if( Tr::eq(operator[](i-1), str[j]) ){ -+ if( Tr::eq(this->operator[](i-1), str[j]) ){ - return i-1; - } - } -@@ -503,7 +503,7 @@ - pos = length(); - } - for(size_type i = pos; i >0 ; --i){ -- if( Tr::eq(operator[](i-1), c) ){ -+ if( Tr::eq(this->operator[](i-1), c) ){ - return i-1; - } - } -@@ -515,7 +515,7 @@ - for(size_type i = pos; i < length(); ++i){ - foundCharacter = false; - for(size_type j = 0; j < str.length() ; ++j){ -- if( Tr::eq(str[j], operator[](i)) ){ -+ if( Tr::eq(str[j], this->operator[](i)) ){ - foundCharacter = true; - } - } -@@ -534,7 +534,7 @@ - } - _UCXXEXPORT size_type find_first_not_of(Ch c, size_type pos = 0) const{ - for(size_type i = pos; i < length() ; ++i){ -- if(operator[](i) != c){ -+ if(this->operator[](i) != c){ - return i; - } - } -@@ -546,7 +546,7 @@ - xpos = pos; - } - -- while(xpos != npos && npos != str.find_first_of(at(xpos))){ -+ while(xpos != npos && npos != str.find_first_of(this->at(xpos))){ - --xpos; - } - -@@ -564,7 +564,7 @@ - if(xpos > pos){ - xpos = pos; - } -- while(xpos != npos && Tr::eq(at(xpos), c)){ -+ while(xpos != npos && Tr::eq(this->at(xpos), c)){ - --xpos; - } - return xpos; |