mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 12:27:15 +02:00
Additional Clang warning fixes
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
|
||||
struct Y {
|
||||
Y(int y = 0) : y_(y) {}
|
||||
bool operator==(const Y& rhs) { return y_ == rhs.y_; }
|
||||
bool operator==(const Y& rhs) const { return y_ == rhs.y_; }
|
||||
private:
|
||||
int y_;
|
||||
};
|
||||
|
Reference in New Issue
Block a user