X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=libstdc%2B%2B-v3%2Finclude%2Fext%2Frope;h=5e82811757c2245d6632ae6f727105e98014922a;hb=94df301fa033641561145d44ed48cf4c85d43a2c;hp=42921516e40bfbf16ee27eec7b1d9a048f4ca5b1;hpb=6e04dcd56f7d94288467234f065fca6006761cfe;p=gcc.git diff --git a/libstdc++-v3/include/ext/rope b/libstdc++-v3/include/ext/rope index 42921516e40..5e82811757c 100644 --- a/libstdc++-v3/include/ext/rope +++ b/libstdc++-v3/include/ext/rope @@ -729,7 +729,7 @@ protected: if (_M_data != this->_M_c_string) this->_M_free_c_string(); - __STL_FREE_STRING(_M_data, this->_M_size, this->_M_get_allocator()); + this->__STL_FREE_STRING(_M_data, this->_M_size, this->_M_get_allocator()); } #endif protected: @@ -1170,7 +1170,7 @@ protected: operator*() { if (0 == this->_M_buf_ptr) - _S_setcache(*this); + this->_S_setcache(*this); return *this->_M_buf_ptr; } @@ -1299,7 +1299,7 @@ protected: _M_root_rope(__r) { _RopeRep::_S_ref(this->_M_root); if (!(__r -> empty())) - _S_setcache(*this); + this->_S_setcache(*this); } void _M_check();