From e1296cf76b51e6412449698d0c768e01f0ade51a Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Tue, 25 Feb 2003 23:11:41 +0000 Subject: [PATCH] MPL names/directory structure refactoring [SVN r17651] --- include/boost/ref.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/ref.hpp b/include/boost/ref.hpp index c8a46c3..52f01cd 100644 --- a/include/boost/ref.hpp +++ b/include/boost/ref.hpp @@ -7,7 +7,7 @@ # include # include -# include +# include // // ref.hpp - ref/cref, useful helper functions @@ -74,13 +74,13 @@ template inline reference_wrapper BOOST_REF_CONST cref(T const # ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION template class is_reference_wrapper - : public mpl::false_c + : public mpl::false_ { }; template class is_reference_wrapper > - : public mpl::true_c + : public mpl::true_ { }; @@ -146,7 +146,7 @@ class is_reference_wrapper sizeof(detail::is_reference_wrapper_test(type())) == sizeof(detail::yes_reference_wrapper_t))); - typedef ::boost::mpl::bool_c type; + typedef ::boost::mpl::bool_ type; }; template