$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53318 - trunk/boost/unordered/detail
From: daniel_james_at_[hidden]
Date: 2009-05-27 14:32:39
Author: danieljames
Date: 2009-05-27 14:32:38 EDT (Wed, 27 May 2009)
New Revision: 53318
URL: http://svn.boost.org/trac/boost/changeset/53318
Log:
Remove an unused function.
Text files modified: 
   trunk/boost/unordered/detail/hash_table_impl.hpp |    10 +---------                              
   1 files changed, 1 insertions(+), 9 deletions(-)
Modified: trunk/boost/unordered/detail/hash_table_impl.hpp
==============================================================================
--- trunk/boost/unordered/detail/hash_table_impl.hpp	(original)
+++ trunk/boost/unordered/detail/hash_table_impl.hpp	2009-05-27 14:32:38 EDT (Wed, 27 May 2009)
@@ -257,13 +257,6 @@
                 
 #else
 
-                void construct()
-                {
-                    construct_preamble();
-                    new(node_->address()) value_type;
-                    value_constructed_ = true;
-                }
-
 #define BOOST_UNORDERED_CONSTRUCT_IMPL(z, n, _)                                 \
                 template <                                                      \
                     BOOST_UNORDERED_TEMPLATE_ARGS(z, n)                         \
@@ -292,8 +285,7 @@
                     new(node_->address()) value_type(                           \
                         BOOST_UNORDERED_CALL_PARAMS(z, n)                       \
                     );                                                          \
-                }                                                               \
-                                                                                \
+                }
                                                                                 
 #define BOOST_UNORDERED_CONSTRUCT_IMPL2(z, n, _)                                \
                 template <typename First, typename Second, typename Key,        \