Search code examples
What's happening when I do new T[1]?...


c++c++14allocator

Read More
Is it guaranteed that std::vector each allocated memory with allocate function, will also deallocate...


c++memory-managementvectorstlallocator

Read More
Does ::operator delete( void * ) know the size of memory allocated with ::operator new( size_t )...


c++c++11memory-managementstlallocator

Read More
Why are many Allocator functions optional?...


c++memory-managementstlallocator

Read More
trivial allocator aware container?...


c++allocator

Read More
std::align and std::aligned_storage for aligned allocation of memory blocks...


c++c++11alignmentallocator

Read More
Allocator usage in C++ (STL Tree)...


c++c++11stlallocator

Read More
why does std::allocator::deallocate require a size?...


c++memory-managementstldelete-operatorallocator

Read More
How do I use use std::allocator in place of realloc?...


c++memory-managementvectorreallocallocator

Read More
Can I write a custom allocator to decide the reallocation amount of std::vector?...


c++memory-managementvectorallocatorc++-concepts

Read More
How can custom allocator know if a pointer points to an array?...


c++allocator

Read More
Why did std::allocator lose member types/functions in C++17?...


c++memory-managementstlallocatorc++17

Read More
How do I make a class pass through scoped allocators?...


c++memory-managementallocator

Read More
How am I supposed to make my allocator rebindable? Can I do it while keeping its fields private?...


c++templatesfriendallocator

Read More
Synonym function call for ::new((void*)p)T(value);...


c++11stlnew-operatorallocator

Read More
Will a custom allocator improve performance if many vector<T> s get constructed and destroyed?...


c++performancevectorallocator

Read More
Determine the type of a pointer...


c++templatesmemory-managementtypesallocator

Read More
Is Stephen Lavavej's Mallocator the same in C++11?...


c++c++11containersstdallocator

Read More
malloc/free based STL allocator...


c++stlallocator

Read More
When do Allocator::pointer and Allocator::value_type* differ?...


c++traitsallocator

Read More
allocator_traits example from cplusplus website...


c++gccallocator

Read More
Type erasure and allocators: what's the expected behavior?...


c++templatestype-erasureallocator

Read More
compiler support for stateful allocators in STL containers...


c++stlc++11containersallocator

Read More
Allocators: how are the standard containers expected to work internally?...


c++stlcontainersallocator

Read More
Does deallocation imply destruction?...


c++c++11memory-managementallocator

Read More
Implementing simple allocator...


c++memory-managementmallocfreeallocator

Read More
Using allocator to implement a vector class: EXC_BAD_ACCESS...


c++allocatorvariadic-functions

Read More
std::allocator_traits defaults with allocator that has more than one template parameter...


c++templatesc++11c++14allocator

Read More
std::scoped_allocator_adaptor and a class with a constructor using std::allocator_arg_t...


c++c++11stlallocator

Read More
Custom allocator for STL fails to compile in release mode only...


c++visual-studiovisual-studio-2008releaseallocator

Read More
BackNext