Remove unnecessary operator (since C++20)
This commit is contained in:
parent
b020922e6f
commit
b33b673f10
|
@ -84,12 +84,6 @@ bool operator==(ArrayView<T> lhs, ArrayView<T> rhs)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
|
||||||
bool operator!=(ArrayView<T> lhs, ArrayView<T> rhs)
|
|
||||||
{
|
|
||||||
return not (lhs == rhs);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // array_view_hh_INCLUDED
|
#endif // array_view_hh_INCLUDED
|
||||||
|
|
Loading…
Reference in New Issue
Block a user