We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856c82c commit 74f969aCopy full SHA for 74f969a
1 file changed
base/cvd/cuttlefish/io/disjoint_range_set.cc
@@ -50,9 +50,7 @@ class Range {
50
return start_ < other.start_ ||
51
(start_ == other.start_ && end_ > other.end_);
52
}
53
- bool operator==(const Range& other) const {
54
- return start_ == other.start_ && end_ == other.end_;
55
- }
+ bool operator==(const Range&) const = default;
56
57
std::pair<uint64_t, uint64_t> AsPair() const {
58
return std::make_pair(start_, end_);
0 commit comments