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