]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/function/test/mem_fun_cxx98.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / function / test / mem_fun_cxx98.cpp
index 927403631a52880c88f0bb637e2b319e728069c1..b42cc001cf7f47387e341bc10681dbb6191309bb 100644 (file)
@@ -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_;
     };