test.hpp 429 B

123456789101112131415161718192021
  1. // (C) Copyright John Maddock 2001.
  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. #ifndef BOOST_CONFIG_TEST_HPP
  7. #define BOOST_CONFIG_TEST_HPP
  8. namespace empty_boost{
  9. int test()
  10. {
  11. return 0;
  12. }
  13. }
  14. #endif