locale
allocation in std::basic_streambuf
#5233
-
The project I am working with does not permit STL's default allocator for specific reasons, so for all string and container types we have alias with custom allocator implemented. I wanted to make use of So how safe is that to go with derivation of
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's not overridden for release builds. We use global new/delete normally.
I don't understand the question.
Historical reason: That's the way that Dinkumware, the original authors of our STL implementation, did it. Their rationale is lost to time. ABI: Because this affects the representation of
The C++ Standard Library quite naturally assumes that it can use the C++ Core Language, of which |
Beta Was this translation helpful? Give feedback.
It's not overridden for release builds. We use global new/delete normally.
I don't understand the question.
Historical reason: That's the way that Dinkumware, the original authors of our STL implementation, did it. Their rationale is lost to time.
ABI: Because this affects the representation of
std::streambuf
, we are utterly unable to change how this works in the v14 (VS…