main.cpp 527 B

12345678910111213141516171819
  1. // (C) Copyright John Maddock 2003.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for the most recent version.
  6. #include "link_test.hpp"
  7. int main()
  8. {
  9. #ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE
  10. test_free_proc<int>(0);
  11. tester<int>::test();
  12. #endif
  13. return check_options(dyn_link, dyn_rtl, has_threads, debug, stl_debug) ? 0 : -1;
  14. }