From b6b214731147cc3b1c3db2dd3016c3d5d05408e8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 10 Jun 2014 03:41:03 +0300 Subject: [PATCH] Switch ref_ct_test to core::is_same. --- test/ref_ct_test.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/ref_ct_test.cpp b/test/ref_ct_test.cpp index 34a79d2..731d62d 100644 --- a/test/ref_ct_test.cpp +++ b/test/ref_ct_test.cpp @@ -7,7 +7,7 @@ // see 'ref_test.cpp' for run-time part #include -#include +#include #include #include @@ -17,8 +17,8 @@ template< typename T, typename U > void ref_test(boost::reference_wrapper) { typedef typename boost::reference_wrapper::type type; - BOOST_STATIC_ASSERT((boost::is_same::value)); - BOOST_STATIC_ASSERT((boost::is_same::value)); + BOOST_STATIC_ASSERT((boost::core::is_same::value)); + BOOST_STATIC_ASSERT((boost::core::is_same::value)); } template< typename T > @@ -36,14 +36,14 @@ void is_reference_wrapper_test(T) template< typename R, typename Ref > void cxx_reference_test(Ref) { - BOOST_STATIC_ASSERT((boost::is_same::value)); + BOOST_STATIC_ASSERT((boost::core::is_same::value)); } template< typename R, typename Ref > void unwrap_reference_test(Ref) { typedef typename boost::unwrap_reference::type type; - BOOST_STATIC_ASSERT((boost::is_same::value)); + BOOST_STATIC_ASSERT((boost::core::is_same::value)); } } // namespace