| 197 | // allocators are "equal" whenever memory allocated with one can be deallocated with the other |
| 198 | template<class T> |
| 199 | inline bool operator==(const spp_::spp_allocator<T> &a, const spp_::spp_allocator<T> &b) |
| 200 | { |
| 201 | return a.space() == b.space(); |
| 202 | } |
| 203 | |
| 204 | template<class T> |
| 205 | inline bool operator!=(const spp_::spp_allocator<T> &a, const spp_::spp_allocator<T> &b) |