Remove unnecessary ValueProxy friend operator !=

This commit is contained in:
Ed Hennis
2025-01-31 16:37:29 -05:00
parent 21e0e7e97b
commit eed18d16ce

View File

@@ -549,13 +549,6 @@ public:
return rhs.value() == lhs;
}
template <typename U>
friend bool
operator!=(U const& lhs, STObject::ValueProxy<T> const& rhs)
{
return !(lhs == rhs);
}
private:
friend class STObject;