aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-24 09:50:34 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-24 09:50:34 +0100
commitc57d6de40fb790a4920a9c8ff235511860d68f32 (patch)
tree2a98eb1622a199806a55f55447fbb70ebf84311d
parent2fdcb290c7c5249896e3f8b542df16e248487f34 (diff)
downloadlibquotient-c57d6de40fb790a4920a9c8ff235511860d68f32.tar.gz
libquotient-c57d6de40fb790a4920a9c8ff235511860d68f32.zip
Don't require C++20 from the clients just yet
-rw-r--r--lib/eventstats.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/eventstats.h b/lib/eventstats.h
index 9be83377..77c661a7 100644
--- a/lib/eventstats.h
+++ b/lib/eventstats.h
@@ -37,7 +37,14 @@ public:
//! the previous run of the client).
bool isEstimate = true;
- bool operator==(const EventStats& rhs) const& = default;
+ // TODO: replace with = default once C++20 becomes a requirement on clients
+ bool operator==(const EventStats& rhs) const
+ {
+ return notableCount == rhs.notableCount
+ && highlightCount == rhs.highlightCount
+ && isEstimate == rhs.isEstimate;
+ }
+ bool operator!=(const EventStats& rhs) const { return !operator==(rhs); }
//! \brief Check whether the event statistics are empty
//!