diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-06-10 21:27:17 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-06-10 22:21:08 +0200 |
commit | 9fc2c15dc021b2fddcb24bbc367c02639ec1256b (patch) | |
tree | d53da80774d029fd0dfb773b7cb6a99869cb376e | |
parent | 0ad4e7da9f561b158cecf793ab34f2968b457ca8 (diff) | |
download | libquotient-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.h | 4 |
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> { |