• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 //          Copyright Oliver Kowalke 2009.
3 // Distributed under the Boost Software License, Version 1.0.
4 //    (See accompanying file LICENSE_1_0.txt or copy at
5 //          http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef BOOST_COROUTINES_FLAGS_H
8 #define BOOST_COROUTINES_FLAGS_H
9 
10 namespace boost {
11 namespace coroutines {
12 
13 enum flag_unwind_t
14 {
15     stack_unwind = 0,
16     no_stack_unwind
17 };
18 
19 }}
20 
21 #endif // BOOST_COROUTINES_FLAGS_H
22