]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/unordered/test/helpers/list.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / unordered / test / helpers / list.hpp
index d39c766e73f9a0e936dff256dccb580a36a9cc10..3fddd6d3839a23072fc3058ecfb766af97b3cfdd 100644 (file)
@@ -113,6 +113,10 @@ namespace test {
         ptr_ = ptr_->next_;
         return tmp;
       }
+
+      bool operator==(list_iterator y) const { return ptr_ == y.ptr_; }
+      bool operator!=(list_iterator y) const { return ptr_ != y.ptr_; }
+
       bool operator==(const_iterator y) const { return ptr_ == y.ptr_; }
       bool operator!=(const_iterator y) const { return ptr_ != y.ptr_; }
     };