$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r81713 - trunk/boost/tti/detail
From: eldiener_at_[hidden]
Date: 2012-12-04 20:31:21
Author: eldiener
Date: 2012-12-04 20:31:21 EST (Tue, 04 Dec 2012)
New Revision: 81713
URL: http://svn.boost.org/trac/boost/changeset/81713
Log:
Use correct macro.
Text files modified: 
   trunk/boost/tti/detail/dnullptr.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/tti/detail/dnullptr.hpp
==============================================================================
--- trunk/boost/tti/detail/dnullptr.hpp	(original)
+++ trunk/boost/tti/detail/dnullptr.hpp	2012-12-04 20:31:21 EST (Tue, 04 Dec 2012)
@@ -9,14 +9,14 @@
 
 #include <boost/config.hpp>
 
-#if defined(BOOST_NO_NULLPTR)
+#if defined(BOOST_NO_CXX11_NULLPTR)
 
 #define BOOST_TTI_DETAIL_NULLPTR 0
 
-#else // !BOOST_NO_NULLPTR
+#else // !BOOST_NO_CXX11_NULLPTR
 
 #define BOOST_TTI_DETAIL_NULLPTR nullptr
 
-#endif // BOOST_NO_NULLPTR
+#endif // BOOST_NO_CXX11_NULLPTR
 
 #endif // BOOST_TTI_DETAIL_NULLPTR_HPP