Home | Info | Community | Development | myReactOS | Contact Us
[inline, protected]
Definition at line 94 of file _string_base.h.
Referenced by _String_base< _Tp, _Alloc >::~_String_base().
{ #if defined (_STLP_USE_SHORT_STRING_OPTIM) if (!_M_using_static_buf() && (_M_start_of_storage._M_data != 0)) _M_start_of_storage.deallocate(_M_start_of_storage._M_data, _M_buffers._M_end_of_storage - _M_start_of_storage._M_data); #else if (_M_start_of_storage._M_data != 0) _M_start_of_storage.deallocate(_M_start_of_storage._M_data, _M_end_of_storage - _M_start_of_storage._M_data); #endif /* _STLP_USE_SHORT_STRING_OPTIM */ }