|
|
@ -94,13 +94,9 @@ class CustomAllocator |
|
|
|
public: |
|
|
|
public: |
|
|
|
typedef T value_type; |
|
|
|
typedef T value_type; |
|
|
|
|
|
|
|
|
|
|
|
T* allocate(size_t cnt, const void* = 0) |
|
|
|
T* allocate(size_t cnt, const void* = 0) { return 0; } |
|
|
|
{ |
|
|
|
void deallocate(T* p, size_t cnt) {} |
|
|
|
return 0; |
|
|
|
bool operator==(const CustomAllocator&) { return true; } |
|
|
|
} |
|
|
|
|
|
|
|
void deallocate(T* p, size_t cnt) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
class DLL_API Ignored |
|
|
|
class DLL_API Ignored |
|
|
|