inline_namespace.hpp 823 B

1234567891011121314151617181920212223242526272829
  1. #ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_INLINE_NAMESPACE_HPP
  2. #define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_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(v2) {}
  17. #if defined(BOOST_NO_CXX11_INLINE_NAMESPACES)
  18. using namespace v2;
  19. #endif
  20. }
  21. }
  22. }
  23. #endif