| 990 | #endif |
| 991 | |
| 992 | pointer allocate(size_type num, const void* /*hint*/ = 0) |
| 993 | { |
| 994 | internal::check_size_for_overflow<T>(num); |
| 995 | return static_cast<pointer>( internal::aligned_malloc(num * sizeof(T)) ); |
| 996 | } |
| 997 | |
| 998 | void deallocate(pointer p, size_type /*num*/) |
| 999 | { |
nothing calls this directly
no test coverage detected