Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79652 - in trunk: boost/functional/detail libs/functional/hash/test
From: dnljms_at_[hidden]
Date: 2012-07-22 03:15:35


Author: danieljames
Date: 2012-07-22 03:15:34 EDT (Sun, 22 Jul 2012)
New Revision: 79652
URL: http://svn.boost.org/trac/boost/changeset/79652

Log:
Compile error for deprecated header `boost/functional/detail/container_fwd.hpp`.
Text files modified:
   trunk/boost/functional/detail/container_fwd.hpp | 19 +------------------
   trunk/libs/functional/hash/test/Jamfile.v2 | 2 +-
   trunk/libs/functional/hash/test/deprecated_container_fwd.cpp | 8 --------
   3 files changed, 2 insertions(+), 27 deletions(-)

Modified: trunk/boost/functional/detail/container_fwd.hpp
==============================================================================
--- trunk/boost/functional/detail/container_fwd.hpp (original)
+++ trunk/boost/functional/detail/container_fwd.hpp 2012-07-22 03:15:34 EDT (Sun, 22 Jul 2012)
@@ -7,21 +7,4 @@
 // This header is deprecated, I'll change the warning to an error in a future
 // release, and then later remove the header completely.
 
-#if !defined(BOOST_FUNCTIONAL_DETAIL_CONTAINER_FWD_HPP)
-#define BOOST_FUNCTIONAL_DETAIL_CONTAINER_FWD_HPP
-
-#if defined(_MSC_VER) && (_MSC_VER >= 1020)
-# pragma once
-#endif
-
-#if defined(__EDG__)
-#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__)
-#pragma message("Warning: boost/functional/detail/container_fwd.hpp is deprecated, use boost/detail/container_fwd.hpp instead.")
-#elif defined(__GNUC__) || defined(__HP_aCC) || \
- defined(__SUNPRO_CC) || defined(__IBMCPP__)
-#warning "boost/functional/detail/container_fwd.hpp is deprecated, use boost/detail/container_fwd.hpp instead."
-#endif
-
-#include <boost/detail/container_fwd.hpp>
-
-#endif
+#error "boost/functional/detail/container_fwd.hpp is deprecated, use boost/detail/container_fwd.hpp instead."

Modified: trunk/libs/functional/hash/test/Jamfile.v2
==============================================================================
--- trunk/libs/functional/hash/test/Jamfile.v2 (original)
+++ trunk/libs/functional/hash/test/Jamfile.v2 2012-07-22 03:15:34 EDT (Sun, 22 Jul 2012)
@@ -51,7 +51,7 @@
         [ run implicit_test.cpp ]
         [ run hash_no_ext_macro_1.cpp ]
         [ run hash_no_ext_macro_2.cpp ]
- [ compile deprecated_container_fwd.cpp ]
+ [ compile-fail deprecated_container_fwd.cpp ]
     ;
 
 test-suite functional/hash_no_ext

Modified: trunk/libs/functional/hash/test/deprecated_container_fwd.cpp
==============================================================================
--- trunk/libs/functional/hash/test/deprecated_container_fwd.cpp (original)
+++ trunk/libs/functional/hash/test/deprecated_container_fwd.cpp 2012-07-22 03:15:34 EDT (Sun, 22 Jul 2012)
@@ -4,11 +4,3 @@
 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
 #include <boost/functional/detail/container_fwd.hpp>
-
-typedef std::vector<int, std::allocator<int> > int_vector;
-
-#include <vector>
-
-int main() {
- int_vector x;
-}


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