From ab3e0c2bbf549c41c578bd85151bfb501e8d58f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 26 Dec 2011 11:07:21 +0000 Subject: [PATCH] Fixed compilation error for some GCC versions [SVN r76167] --- include/boost/container/deque.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/deque.hpp b/include/boost/container/deque.hpp index a2baf04..d3b4732 100644 --- a/include/boost/container/deque.hpp +++ b/include/boost/container/deque.hpp @@ -379,7 +379,7 @@ class deque_base : members_(a) { this->priv_initialize_map(num_elements); } - deque_base(const allocator_type& a) + explicit deque_base(const allocator_type& a) : members_(a) {}