Remove unnecessary operator (since C++20)

This commit is contained in:
Maxime Coste 2023-10-25 12:51:59 +11:00
parent b020922e6f
commit b33b673f10

View File

@ -84,12 +84,6 @@ bool operator==(ArrayView<T> lhs, ArrayView<T> rhs)
return true;
}
template<typename T>
bool operator!=(ArrayView<T> lhs, ArrayView<T> rhs)
{
return not (lhs == rhs);
}
}
#endif // array_view_hh_INCLUDED