$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84444 - in trunk/boost/type_erasure: . detail
From: steven_at_[hidden]
Date: 2013-05-23 11:00:36
Author: steven_watanabe
Date: 2013-05-23 11:00:36 EDT (Thu, 23 May 2013)
New Revision: 84444
URL: http://svn.boost.org/trac/boost/changeset/84444
Log:
Fix inspect errors.
Text files modified: 
   trunk/boost/type_erasure/any.hpp           |     4 ++--                                    
   trunk/boost/type_erasure/detail/vtable.hpp |     2 +-                                      
   2 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/type_erasure/any.hpp
==============================================================================
--- trunk/boost/type_erasure/any.hpp	(original)
+++ trunk/boost/type_erasure/any.hpp	2013-05-23 11:00:36 EDT (Thu, 23 May 2013)
@@ -519,7 +519,7 @@
             ), other)
         )
     {}
-#ifndef BOOST_NO_RVALUE_REFERENCES
+#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
     any(any<Concept, T&>&& other)
       : table(::boost::type_erasure::detail::access::table(other)),
         data(::boost::type_erasure::call(
@@ -545,7 +545,7 @@
             ), other)
         )
     {}
-#ifndef BOOST_NO_RVALUE_REFERENCES
+#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
     any(any<Concept, const T&>&& other)
       : table(::boost::type_erasure::detail::access::table(other)),
         data(::boost::type_erasure::call(
Modified: trunk/boost/type_erasure/detail/vtable.hpp
==============================================================================
--- trunk/boost/type_erasure/detail/vtable.hpp	(original)
+++ trunk/boost/type_erasure/detail/vtable.hpp	2013-05-23 11:00:36 EDT (Thu, 23 May 2013)
@@ -30,7 +30,7 @@
 namespace type_erasure {
 namespace detail {
 
-#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CONSTEXPR) && !defined(BOOST_NO_DEFAULTED_FUNCTIONS)
+#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_CONSTEXPR) && !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS)
 
 template<class... T>
 struct stored_arg_pack;