mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Switch from C++17 to C++20
This commit is contained in:
@@ -251,22 +251,22 @@ public:
|
||||
}
|
||||
|
||||
bool
|
||||
operator==(Blob const& v)
|
||||
operator==(Blob const& v) const
|
||||
{
|
||||
return v == mData;
|
||||
}
|
||||
bool
|
||||
operator!=(Blob const& v)
|
||||
operator!=(Blob const& v) const
|
||||
{
|
||||
return v != mData;
|
||||
}
|
||||
bool
|
||||
operator==(const Serializer& v)
|
||||
operator==(const Serializer& v) const
|
||||
{
|
||||
return v.mData == mData;
|
||||
}
|
||||
bool
|
||||
operator!=(const Serializer& v)
|
||||
operator!=(const Serializer& v) const
|
||||
{
|
||||
return v.mData != mData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user