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