summary refs log tree commit diff
path: root/include/events/TopicEventContent.h
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-10-22 19:03:55 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-10-22 19:03:55 +0300
commitc0e55378c31321e2ab7a117cefb3bd63a609e474 (patch)
treeef6f08864d713a4fc6dc49b24018156abfdec048 /include/events/TopicEventContent.h
parentRemove cache updates from the main thread (diff)
downloadnheko-c0e55378c31321e2ab7a117cefb3bd63a609e474.tar.xz
Remove extra inline keywords
Diffstat (limited to 'include/events/TopicEventContent.h')
-rw-r--r--include/events/TopicEventContent.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/events/TopicEventContent.h b/include/events/TopicEventContent.h

index d059e489..67e21208 100644 --- a/include/events/TopicEventContent.h +++ b/include/events/TopicEventContent.h
@@ -36,16 +36,11 @@ public: void deserialize(const QJsonValue &data) override; QJsonObject serialize() const override; - inline QString topic() const; + QString topic() const { return topic_; }; private: QString topic_; }; -inline QString -TopicEventContent::topic() const -{ - return topic_; -} } // namespace events } // namespace matrix