diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-25 20:12:58 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-25 20:12:58 +0900 |
commit | 72ac40aec4685781d8d669cb69a70c6baf167500 (patch) | |
tree | f66a6956040a95cd318536a6933a7b51af1f324a | |
parent | 37e807b7e4b8991353802b38da226ef47b8848ec (diff) | |
download | libquotient-72ac40aec4685781d8d669cb69a70c6baf167500.tar.gz libquotient-72ac40aec4685781d8d669cb69a70c6baf167500.zip |
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).
-rw-r--r-- | room.cpp | 5 | ||||
-rw-r--r-- | room.h | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -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)) { @@ -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; |