| 141 | |
| 142 | template <class T, std::size_t N, std::size_t A1, class U, std::size_t M, std::size_t A2> |
| 143 | inline |
| 144 | bool |
| 145 | operator==(const short_alloc<T, N, A1>& x, const short_alloc<U, M, A2>& y) noexcept |
| 146 | { |
| 147 | return N == M && A1 == A2 && &x.a_ == &y.a_; |
| 148 | } |
| 149 | |
| 150 | template <class T, std::size_t N, std::size_t A1, class U, std::size_t M, std::size_t A2> |
| 151 | inline |
nothing calls this directly
no outgoing calls
no test coverage detected