aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-25 20:12:58 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-25 20:12:58 +0900
commit72ac40aec4685781d8d669cb69a70c6baf167500 (patch)
treef66a6956040a95cd318536a6933a7b51af1f324a
parent37e807b7e4b8991353802b38da226ef47b8848ec (diff)
downloadlibquotient-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.cpp5
-rw-r--r--room.h5
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;