| 60 | typedef std::ptrdiff_t difference_type; |
| 61 | |
| 62 | __forceinline pointer allocate( size_type n ) { |
| 63 | return (pointer) alignedMalloc(n*sizeof(value_type),alignment); |
| 64 | } |
| 65 | |
| 66 | __forceinline void deallocate( pointer p, size_type n ) { |
| 67 | return alignedFree(p); |
nothing calls this directly
no test coverage detected