summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Session/SessionTracer.h')
-rw-r--r--Swiften/Session/SessionTracer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Session/SessionTracer.h b/Swiften/Session/SessionTracer.h
index 3993a87..8e73c16 100644
--- a/Swiften/Session/SessionTracer.h
+++ b/Swiften/Session/SessionTracer.h
@@ -15,11 +15,11 @@
namespace Swift {
class SWIFTEN_API SessionTracer {
public:
- SessionTracer(boost::shared_ptr<Session> session);
+ SessionTracer(std::shared_ptr<Session> session);
private:
void printData(char direction, const SafeByteArray& data);
- boost::shared_ptr<Session> session;
+ std::shared_ptr<Session> session;
};
}