summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Client/ClientSession.h')
-rw-r--r--Swiften/Client/ClientSession.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/Client/ClientSession.h b/Swiften/Client/ClientSession.h
index 61de014..9bbc3f2 100644
--- a/Swiften/Client/ClientSession.h
+++ b/Swiften/Client/ClientSession.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2010-2014 Isode Limited. 2 * Copyright (c) 2010-2015 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -57,6 +57,7 @@ namespace Swift {
57 TLSError, 57 TLSError,
58 StreamError 58 StreamError
59 } type; 59 } type;
60 boost::shared_ptr<boost::system::error_code> errorCode;
60 Error(Type type) : type(type) {} 61 Error(Type type) : type(type) {}
61 }; 62 };
62 63