diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-24 09:50:34 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-24 09:50:34 +0100 |
commit | c57d6de40fb790a4920a9c8ff235511860d68f32 (patch) | |
tree | 2a98eb1622a199806a55f55447fbb70ebf84311d | |
parent | 2fdcb290c7c5249896e3f8b542df16e248487f34 (diff) | |
download | libquotient-c57d6de40fb790a4920a9c8ff235511860d68f32.tar.gz libquotient-c57d6de40fb790a4920a9c8ff235511860d68f32.zip |
Don't require C++20 from the clients just yet
-rw-r--r-- | lib/eventstats.h | 9 |
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 //! |