summary refs log tree commit diff
path: root/include/events/JoinRulesEventContent.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/JoinRulesEventContent.h
parentRemove cache updates from the main thread (diff)
downloadnheko-c0e55378c31321e2ab7a117cefb3bd63a609e474.tar.xz
Remove extra inline keywords
Diffstat (limited to 'include/events/JoinRulesEventContent.h')
-rw-r--r--include/events/JoinRulesEventContent.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/events/JoinRulesEventContent.h b/include/events/JoinRulesEventContent.h

index b9b6848d..4ed9e65f 100644 --- a/include/events/JoinRulesEventContent.h +++ b/include/events/JoinRulesEventContent.h
@@ -51,16 +51,11 @@ public: void deserialize(const QJsonValue &data) override; QJsonObject serialize() const override; - inline JoinRule joinRule() const; + JoinRule joinRule() const { return join_rule_; }; private: JoinRule join_rule_; }; -inline JoinRule -JoinRulesEventContent::joinRule() const -{ - return join_rule_; -} } // namespace events } // namespace matrix