fix_icl_after_thread.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031
  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. // #include <boost/thread.hpp> MEMO: The problem occured when using thread.hpp
  12. #include <boost/bind.hpp> // but is also triggered from bind.hpp alone
  13. // while the cause of it is an error in the msvc-7.1 to 10.0 compilers.
  14. // A minimal example is provided by test case 'cmp_msvc_value_born_error'
  15. #include <boost/icl/interval_map.hpp>
  16. #include <boost/icl/split_interval_map.hpp>
  17. #include <boost/icl/separate_interval_set.hpp>
  18. #include <boost/icl/split_interval_set.hpp>
  19. using namespace std;
  20. using namespace boost;
  21. using namespace unit_test;
  22. using namespace boost::icl;
  23. BOOST_AUTO_TEST_CASE(dummy)
  24. {
  25. BOOST_CHECK(true);
  26. }