| 93 | explicit allocator( allocator<U> const& ) {} |
| 94 | |
| 95 | static T* allocate( size_t nCount ) |
| 96 | { |
| 97 | return reinterpret_cast<T*>( s_alloc_memory( sizeof( value_type ) * nCount )); |
| 98 | } |
| 99 | |
| 100 | static void deallocate( T* p, size_t /*nCount*/ ) |
| 101 | { |
no outgoing calls
no test coverage detected