inline_namespace.hpp 778 B

1234567891011121314151617181920212223
  1. #ifndef BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
  2. #define BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
  3. //////////////////////////////////////////////////////////////////////////////
  4. //
  5. // (C) Copyright Vicente J. Botet Escriba 2014. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/thread for documentation.
  10. //
  11. //////////////////////////////////////////////////////////////////////////////
  12. #include <boost/config.hpp>
  13. #if !defined(BOOST_NO_CXX11_INLINE_NAMESPACES)
  14. # define BOOST_THREAD_INLINE_NAMESPACE(name) inline namespace name
  15. #else
  16. # define BOOST_THREAD_INLINE_NAMESPACE(name) namespace name
  17. #endif
  18. #endif