According to this link, gcc provides lots of interesting memory allocators to be used with STL containers, but which is used by default if I don’t specify one when creating a std::list?
According to this link, gcc provides lots of interesting memory allocators to be used
Share
As it says on that page you link to,
I.e, the default allocator is basically just
operator new.