operator== function template — Compares allocators for equality
template <class T1, class T2>
bool operator==(const allocator<T1>&, const allocator<T2>&)
throw( );
The operator==
function
template always returns true
. In
other words, any object of type allocator
is considered to be the same as
every other allocator
.