// (C) Copyright John Maddock 2005. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_TR1_TEST_RESULT_HPP #define BOOST_TR1_TEST_RESULT_HPP #include #include #include template void verify_return_type(T1, T2) { // This is a workaround for the broken type // deduction in Borland C++: typedef typename boost::remove_cv::type T1CV; typedef typename boost::remove_cv::type T2CV; BOOST_STATIC_ASSERT( (::boost::is_same::value)); } #endif