From c57d6de40fb790a4920a9c8ff235511860d68f32 Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Wed, 24 Nov 2021 09:50:34 +0100 Subject: Don't require C++20 from the clients just yet --- lib/eventstats.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib') 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 //! -- cgit v1.2.3