flags.hpp 582 B

12345678910111213141516171819202122232425262728
  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. #ifndef BOOST_CONTEXT_FLAGS_H
  6. #define BOOST_CONTEXT_FLAGS_H
  7. # include <boost/config.hpp>
  8. # ifdef BOOST_HAS_ABI_HEADERS
  9. # include BOOST_ABI_PREFIX
  10. # endif
  11. namespace boost {
  12. namespace context {
  13. struct exec_ontop_arg_t {};
  14. const exec_ontop_arg_t exec_ontop_arg{};
  15. }}
  16. # ifdef BOOST_HAS_ABI_HEADERS
  17. # include BOOST_ABI_SUFFIX
  18. # endif
  19. #endif // BOOST_CONTEXT_FLAGS_H