From 45ad412c10bdd95db878a2de2f78f70eb602f4ae Mon Sep 17 00:00:00 2001 From: Daniel Green Date: Wed, 29 Jan 2014 14:19:36 -0800 Subject: [PATCH] nested template definitions must include '> >' instead of '>>' --- include/cql/internal/cql_cluster_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cql/internal/cql_cluster_impl.hpp b/include/cql/internal/cql_cluster_impl.hpp index 5adf386cb..422b2ac09 100644 --- a/include/cql/internal/cql_cluster_impl.hpp +++ b/include/cql/internal/cql_cluster_impl.hpp @@ -223,7 +223,7 @@ class cql_cluster_impl_t : // because it's in it's own thread. Using boost::asio::io_service::work prevents the thread from exiting. boost::mutex _mutex; boost::scoped_ptr _work; - std::vector> _threads; + std::vector > _threads; boost::shared_ptr _metadata; connected_sessions_t _connected_sessions; boost::shared_ptr _control_connection;