flags.hpp 428 B

123456789101112131415161718192021
  1. // Copyright Oliver Kowalke 2009.
  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_COROUTINES_FLAGS_H
  6. #define BOOST_COROUTINES_FLAGS_H
  7. namespace boost {
  8. namespace coroutines {
  9. enum flag_unwind_t
  10. {
  11. stack_unwind = 0,
  12. no_stack_unwind
  13. };
  14. }}
  15. #endif // BOOST_COROUTINES_FLAGS_H