| 737 | void deallocate(T* p, size_t) { free(p); } |
| 738 | |
| 739 | constexpr friend auto operator==(allocator, allocator) noexcept -> bool { |
| 740 | return true; // All instances of this allocator are equivalent. |
| 741 | } |
| 742 | constexpr friend auto operator!=(allocator, allocator) noexcept -> bool { |
| 743 | return false; |
| 744 | } |
nothing calls this directly
no outgoing calls
no test coverage detected