1 /*-----------------------------------------------------------------------------+ 2 Copyright (c) 2011-2011: Joachim Faulhaber 3 +------------------------------------------------------------------------------+ 4 Distributed under the Boost Software License, Version 1.0. 5 (See accompanying file LICENCE.txt or copy at 6 http://www.boost.org/LICENSE_1_0.txt) 7 +-----------------------------------------------------------------------------*/ 8 #define BOOST_TEST_MODULE icl::fix_icl_after_thread unit test 9 #include <libs/icl/test/disable_test_warnings.hpp> 10 #include "../unit_test_unwarned.hpp" 11 12 // #include <boost/thread.hpp> MEMO: The problem occured when using thread.hpp 13 #include <boost/bind.hpp> // but is also triggered from bind.hpp alone 14 // while the cause of it is an error in the msvc-7.1 to 10.0 compilers. 15 // A minimal example is provided by test case 'cmp_msvc_value_born_error' 16 #include <boost/icl/interval_map.hpp> 17 #include <boost/icl/split_interval_map.hpp> 18 #include <boost/icl/separate_interval_set.hpp> 19 #include <boost/icl/split_interval_set.hpp> 20 21 using namespace std; 22 using namespace boost; 23 using namespace unit_test; 24 using namespace boost::icl; 25 26 BOOST_AUTO_TEST_CASE(dummy)27BOOST_AUTO_TEST_CASE(dummy) 28 { 29 BOOST_CHECK(true); 30 } 31 32