inline_namespace.hpp 822 B

12345678910111213141516171819202122232425262728
  1. #ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_INLINE_NAMESPACE_HPP
  2. #define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_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/thread/experimental/config/inline_namespace.hpp>
  13. namespace boost {
  14. namespace experimental {
  15. namespace parallel {
  16. BOOST_THREAD_INLINE_NAMESPACE(v1) {}
  17. #if defined(BOOST_NO_CXX11_INLINE_NAMESPACES)
  18. using namespace v1;
  19. #endif
  20. }
  21. }
  22. }
  23. #endif