execution_context.hpp 495 B

123456789101112131415
  1. // Copyright Oliver Kowalke 2014.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/context/detail/config.hpp>
  6. #if ! defined(BOOST_CONTEXT_NO_CXX11)
  7. # if (defined(BOOST_EXECUTION_CONTEXT) && (BOOST_EXECUTION_CONTEXT == 1))
  8. # include <boost/context/execution_context_v1.hpp>
  9. # else
  10. # include <boost/context/execution_context_v2.hpp>
  11. # endif
  12. #endif