From ba9f0e47a1aefefb46542ddf0224f5e1e5f233a8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 1 Jun 2014 01:51:40 +0300 Subject: [PATCH] Remove unnecessary includes and workarounds from ref_ct_test. --- test/ref_ct_test.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/ref_ct_test.cpp b/test/ref_ct_test.cpp index a3b5eea..34a79d2 100644 --- a/test/ref_ct_test.cpp +++ b/test/ref_ct_test.cpp @@ -8,12 +8,9 @@ #include #include -#include #include #include -#include - namespace { template< typename T, typename U > @@ -39,23 +36,13 @@ void is_reference_wrapper_test(T) template< typename R, typename Ref > void cxx_reference_test(Ref) { -#if BOOST_WORKAROUND(__BORLANDC__, < 0x600) - typedef typename boost::remove_const::type ref; - BOOST_STATIC_ASSERT((boost::is_same::value)); -#else BOOST_STATIC_ASSERT((boost::is_same::value)); -#endif } template< typename R, typename Ref > void unwrap_reference_test(Ref) { -#if BOOST_WORKAROUND(__BORLANDC__, < 0x600) - typedef typename boost::remove_const::type ref; - typedef typename boost::unwrap_reference::type type; -#else typedef typename boost::unwrap_reference::type type; -#endif BOOST_STATIC_ASSERT((boost::is_same::value)); }