$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82433 - trunk/boost/container/detail
From: igaztanaga_at_[hidden]
Date: 2013-01-10 15:03:39
Author: igaztanaga
Date: 2013-01-10 15:03:39 EST (Thu, 10 Jan 2013)
New Revision: 82433
URL: http://svn.boost.org/trac/boost/changeset/82433
Log:
Removed unused variable warnings
Text files modified: 
   trunk/boost/container/detail/node_pool_impl.hpp |     2 --                                      
   1 files changed, 0 insertions(+), 2 deletions(-)
Modified: trunk/boost/container/detail/node_pool_impl.hpp
==============================================================================
--- trunk/boost/container/detail/node_pool_impl.hpp	(original)
+++ trunk/boost/container/detail/node_pool_impl.hpp	2013-01-10 15:03:39 EST (Thu, 10 Jan 2013)
@@ -208,8 +208,6 @@
       BOOST_ASSERT(m_allocated==0);
       size_type blocksize = get_rounded_size
          (m_real_node_size*m_nodes_per_block, (size_type)alignment_of<node_t>::value);
-      typename blockslist_t::iterator
-         it(m_blocklist.begin()), itend(m_blocklist.end()), aux;
 
       //We iterate though the NodeBlock list to free the memory
       while(!m_blocklist.empty()){