Home | Info | Community | Development | myReactOS | Contact Us
[protected]
Definition at line 38 of file allocator_test.cpp.
{ typedef allocator<char> CharAllocator; CharAllocator charAllocator; char* buf = charAllocator.allocate(0); charAllocator.deallocate(buf, 0); charAllocator.deallocate(0, 0); }