Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81678 - in trunk/boost/functional/hash: . detail
From: dnljms_at_[hidden]
Date: 2012-12-02 16:12:25


Author: danieljames
Date: 2012-12-02 16:12:24 EST (Sun, 02 Dec 2012)
New Revision: 81678
URL: http://svn.boost.org/trac/boost/changeset/81678

Log:
Hash: Remove container_fwd_0x.hpp
Removed:
   trunk/boost/functional/hash/detail/container_fwd_0x.hpp
Text files modified:
   trunk/boost/functional/hash/extensions.hpp | 14 +++++++++++++-
   1 files changed, 13 insertions(+), 1 deletions(-)

Deleted: trunk/boost/functional/hash/detail/container_fwd_0x.hpp
==============================================================================
--- trunk/boost/functional/hash/detail/container_fwd_0x.hpp 2012-12-02 16:12:24 EST (Sun, 02 Dec 2012)
+++ (empty file)
@@ -1,29 +0,0 @@
-
-// Copyright 2012 Daniel James.
-// Distributed under the Boost Software License, Version 1.0. (See accompanying
-// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-#if !defined(BOOST_DETAIL_CONTAINER_FWD_0X_HPP)
-#define BOOST_DETAIL_CONTAINER_FWD_0X_HPP
-
-#include <boost/detail/container_fwd.hpp>
-
-// std::array
-
-#if !defined(BOOST_NO_CXX11_HDR_ARRAY)
-# include <array>
-#endif
-
-// std::tuple
-
-#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
-# include <tuple>
-#endif
-
-// std::shared_ptr/std::unique_ptr
-
-#if !defined(BOOST_NO_CXX11_HDR_MEMORY)
-# include <memory>
-#endif
-
-#endif

Modified: trunk/boost/functional/hash/extensions.hpp
==============================================================================
--- trunk/boost/functional/hash/extensions.hpp (original)
+++ trunk/boost/functional/hash/extensions.hpp 2012-12-02 16:12:24 EST (Sun, 02 Dec 2012)
@@ -14,12 +14,24 @@
 #define BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP
 
 #include <boost/functional/hash/hash.hpp>
-#include <boost/functional/hash/detail/container_fwd_0x.hpp>
+#include <boost/detail/container_fwd.hpp>
 #include <boost/utility/enable_if.hpp>
 #include <boost/static_assert.hpp>
 #include <boost/preprocessor/repetition/repeat_from_to.hpp>
 #include <boost/preprocessor/repetition/enum_params.hpp>
 
+#if !defined(BOOST_NO_CXX11_HDR_ARRAY)
+# include <array>
+#endif
+
+#if !defined(BOOST_NO_CXX11_HDR_TUPLE)
+# include <tuple>
+#endif
+
+#if !defined(BOOST_NO_CXX11_HDR_MEMORY)
+# include <memory>
+#endif
+
 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
 # pragma once
 #endif


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk