| 737 | ~aligned_allocator() {} |
| 738 | |
| 739 | pointer allocate(size_type num, const void* /*hint*/ = 0) |
| 740 | { |
| 741 | internal::check_size_for_overflow<T>(num); |
| 742 | return static_cast<pointer>( internal::aligned_malloc(num * sizeof(T)) ); |
| 743 | } |
| 744 | |
| 745 | void deallocate(pointer p, size_type /*num*/) |
| 746 | { |
nothing calls this directly
no test coverage detected