From 4438b8e01727e1d488dd67e937bf92ba36a9fd79 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Tue, 10 Nov 2009 20:07:50 +0000 Subject: [PATCH] Fix a warning that only shows up in release builds. [SVN r57556] --- include/boost/unordered/detail/fwd.hpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/boost/unordered/detail/fwd.hpp b/include/boost/unordered/detail/fwd.hpp index 5696cbca..5b904344 100644 --- a/include/boost/unordered/detail/fwd.hpp +++ b/include/boost/unordered/detail/fwd.hpp @@ -12,7 +12,6 @@ #define BOOST_UNORDERED_DETAIL_FWD_HPP_INCLUDED #include -#include #include #include #include @@ -106,13 +105,6 @@ namespace boost { namespace unordered_detail { node_ptr next_; hash_bucket() : next_() {} - - // Only copy construct when allocating. - hash_bucket(hash_bucket const& x) - : next_() - { - BOOST_ASSERT(!x.next_); - } }; template