| 1109 | template<class U> |
| 1110 | friend |
| 1111 | bool |
| 1112 | operator!=(throwing_allocator<T> const& x, throwing_allocator<U> const& y) noexcept |
| 1113 | { |
| 1114 | return !(x == y); |
| 1115 | } |
| 1116 | }; |
| 1117 | |
| 1118 | void |
nothing calls this directly
no outgoing calls
no test coverage detected