summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/Idle.h')
-rw-r--r--Swiften/Elements/Idle.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/Elements/Idle.h b/Swiften/Elements/Idle.h
index 07ecc74..9f721aa 100644
--- a/Swiften/Elements/Idle.h
+++ b/Swiften/Elements/Idle.h
@@ -12,8 +12,9 @@
#pragma once
+#include <memory>
+
#include <boost/date_time/posix_time/posix_time_types.hpp>
-#include <boost/shared_ptr.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Payload.h>
@@ -22,7 +23,7 @@ namespace Swift {
class SWIFTEN_API Idle : public Payload {
public:
- typedef boost::shared_ptr<Idle> ref;
+ typedef std::shared_ptr<Idle> ref;
public:
Idle() {}