summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp')
-rw-r--r--Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp b/Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp
index 61b91ae..5914cf2 100644
--- a/Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp
+++ b/Swiften/Serializer/PayloadSerializers/ThreadSerializer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015 Isode Limited.
+ * Copyright (c) 2015-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -15,7 +15,7 @@ namespace Swift {
ThreadSerializer::~ThreadSerializer() {
}
- std::string ThreadSerializer::serializePayload(boost::shared_ptr<Thread> thread) const {
+ std::string ThreadSerializer::serializePayload(std::shared_ptr<Thread> thread) const {
XMLElement threadNode("thread", "", thread->getText());
if (!thread->getParent().empty()) {
threadNode.setAttribute("parent", thread->getParent());