mirror of
https://github.com/boostorg/utility.git
synced 2025-07-30 21:07:27 +02:00
Fix compilation with MSVC 14.3 in C++20 mode.
This commit is contained in:
@ -201,7 +201,7 @@ struct comparible_UDT
|
||||
i_ = other.i_;
|
||||
return *this;
|
||||
}
|
||||
bool operator == (const comparible_UDT& v){ return v.i_ == i_; }
|
||||
bool operator == (const comparible_UDT& v) const { return v.i_ == i_; }
|
||||
};
|
||||
|
||||
int main()
|
||||
|
Reference in New Issue
Block a user