From 5e4be40df6a21d2243700f37a82b7f525e15f491 Mon Sep 17 00:00:00 2001 From: COLE Edouard Date: Thu, 30 Jan 2014 12:35:54 +0000 Subject: [PATCH] Fixing ssl context ctor call for old boost version --- include/cql/cql_builder.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cql/cql_builder.hpp b/include/cql/cql_builder.hpp index 476e41c14..e419e3790 100644 --- a/include/cql/cql_builder.hpp +++ b/include/cql/cql_builder.hpp @@ -437,7 +437,7 @@ class CQL_EXPORT cql_builder_t : boost::shared_ptr ssl_context( new boost::asio::ssl::context( #if BOOST_VERSION <= 104800 - _io_service, + *_io_service.get(), #endif boost::asio::ssl::context::sslv23)); _ssl_context = ssl_context;