aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-06-10 21:27:17 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-06-10 22:21:08 +0200
commit9fc2c15dc021b2fddcb24bbc367c02639ec1256b (patch)
treed53da80774d029fd0dfb773b7cb6a99869cb376e
parent0ad4e7da9f561b158cecf793ab34f2968b457ca8 (diff)
downloadlibquotient-9fc2c15dc021b2fddcb24bbc367c02639ec1256b.tar.gz
libquotient-9fc2c15dc021b2fddcb24bbc367c02639ec1256b.zip
syncdata.h: fix an old warning about operator<<
The warning has been that it is declared as a friend but not exactly in namespace Quotient (though all compilers still could find and link it but only as long as it is defined in the namespace). Now instead of being declared as a friend it's just declared in the namespace :)
-rw-r--r--lib/syncdata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/syncdata.h b/lib/syncdata.h
index 752dd485..67d04557 100644
--- a/lib/syncdata.h
+++ b/lib/syncdata.h
@@ -41,9 +41,9 @@ struct RoomSummary {
/// Merge the contents of another RoomSummary object into this one
/// \return true, if the current object has changed; false otherwise
bool merge(const RoomSummary& other);
-
- friend QDebug operator<<(QDebug dbg, const RoomSummary& rs);
};
+QDebug operator<<(QDebug dbg, const RoomSummary& rs);
+
template <>
struct JsonObjectConverter<RoomSummary> {