Quote Originally Posted by monarch_dodra View Post

http://www.cplusplus.com/reference/s...ory/allocator/ is the default stl allocator, and basically wraps new.
I'm no expert, but I would guess that it's actually wrapping malloc, since I know std::vector uses placement new internally to avoid constructing objects in the "unused" portion of its capacity until necessary.