From 72ac40aec4685781d8d669cb69a70c6baf167500 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 25 Dec 2017 20:12:58 +0900 Subject: Room: Remove C++14 code from the header file This will provide some backwards-compatibility to clients that are not ready to move _their_ code to C++14 (at least, it will allow them to not add C++14 requirement to their makefiles as of yet). --- room.cpp | 5 +++++ room.h | 5 +---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/room.cpp b/room.cpp index 45521a73..0024683d 100644 --- a/room.cpp +++ b/room.cpp @@ -160,6 +160,11 @@ class Room::Private } }; +RoomEventPtr TimelineItem::replaceEvent(RoomEventPtr&& other) +{ + return std::exchange(evt, std::move(other)); +} + Room::Room(Connection* connection, QString id, JoinState initialJoinState) : QObject(connection), d(new Private(connection, id, initialJoinState)) { diff --git a/room.h b/room.h index 77d56377..9a458c4e 100644 --- a/room.h +++ b/room.h @@ -57,10 +57,7 @@ namespace QMatrixClient index_t index() const { return idx; } // Used for event redaction - RoomEventPtr replaceEvent(RoomEventPtr&& other) - { - return std::exchange(evt, std::move(other)); - } + RoomEventPtr replaceEvent(RoomEventPtr&& other); private: RoomEventPtr evt; -- cgit v1.2.3