$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r76167 - trunk/boost/container
From: igaztanaga_at_[hidden]
Date: 2011-12-26 06:07:22
Author: igaztanaga
Date: 2011-12-26 06:07:21 EST (Mon, 26 Dec 2011)
New Revision: 76167
URL: http://svn.boost.org/trac/boost/changeset/76167
Log:
Fixed compilation error for some GCC versions
Text files modified: 
   trunk/boost/container/deque.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/container/deque.hpp
==============================================================================
--- trunk/boost/container/deque.hpp	(original)
+++ trunk/boost/container/deque.hpp	2011-12-26 06:07:21 EST (Mon, 26 Dec 2011)
@@ -379,7 +379,7 @@
       :  members_(a)
    { this->priv_initialize_map(num_elements); }
 
-   deque_base(const allocator_type& a) 
+   explicit deque_base(const allocator_type& a) 
       :  members_(a)
    {}