operator==

template<class T>
    bool operator==(allocator<T>& lhs,
        allocator<T>& rhs);

The template operator returns true. (Two allocator objects should compare equal only if an object allocated through one can be deallocated through the other. If the value of one object is determined from another by assignment or by construction, the two objects should compare equal.)