From 762be1e73d6f5021e63fc9a4fea273951b3fb113 Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Sun, 10 Oct 2021 22:26:08 +0200 Subject: ReadReceipt::operator==/!=: Add const where it's due --- lib/room.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/room.h b/lib/room.h index ca9f36cb..73f28a6e 100644 --- a/lib/room.h +++ b/lib/room.h @@ -81,11 +81,14 @@ public: QString eventId; QDateTime timestamp; - bool operator==(const ReadReceipt& other) + bool operator==(const ReadReceipt& other) const { return eventId == other.eventId && timestamp == other.timestamp; } - bool operator!=(const ReadReceipt& other) { return !operator==(other); } + bool operator!=(const ReadReceipt& other) const + { + return !operator==(other); + } }; inline void swap(ReadReceipt& lhs, ReadReceipt& rhs) { -- cgit v1.2.3