@@ -80,9 +80,6 @@ struct ICEBERG_EXPORT SnapshotRef {
8080 return lhs.Equals (rhs);
8181 }
8282
83- // / \brief Compare two branches for inequality.
84- friend bool operator !=(const Branch& lhs, const Branch& rhs) { return !(lhs == rhs); }
85-
8683 private:
8784 // / \brief Compare two branches for equality.
8885 bool Equals (const Branch& other) const ;
@@ -97,9 +94,6 @@ struct ICEBERG_EXPORT SnapshotRef {
9794 // / \brief Compare two tags for equality.
9895 friend bool operator ==(const Tag& lhs, const Tag& rhs) { return lhs.Equals (rhs); }
9996
100- // / \brief Compare two tags for inequality.
101- friend bool operator !=(const Tag& lhs, const Tag& rhs) { return !(lhs == rhs); }
102-
10397 private:
10498 // / \brief Compare two tags for equality.
10599 bool Equals (const Tag& other) const ;
@@ -117,11 +111,6 @@ struct ICEBERG_EXPORT SnapshotRef {
117111 return lhs.Equals (rhs);
118112 }
119113
120- // / \brief Compare two snapshot refs for inequality.
121- friend bool operator !=(const SnapshotRef& lhs, const SnapshotRef& rhs) {
122- return !(lhs == rhs);
123- }
124-
125114 private:
126115 // / \brief Compare two snapshot refs for equality.
127116 bool Equals (const SnapshotRef& other) const ;
@@ -263,11 +252,6 @@ struct ICEBERG_EXPORT Snapshot {
263252 return lhs.Equals (rhs);
264253 }
265254
266- // / \brief Compare two snapshots for inequality.
267- friend bool operator !=(const Snapshot& lhs, const Snapshot& rhs) {
268- return !(lhs == rhs);
269- }
270-
271255 private:
272256 // / \brief Compare two snapshots for equality.
273257 bool Equals (const Snapshot& other) const ;
0 commit comments