Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:45:10

0001 
0002 //          Copyright Oliver Kowalke 2009.
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //    (See accompanying file LICENSE_1_0.txt or copy at
0005 //          http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_COROUTINES_FLAGS_H
0008 #define BOOST_COROUTINES_FLAGS_H
0009 
0010 namespace boost {
0011 namespace coroutines {
0012 
0013 enum flag_unwind_t
0014 {
0015     stack_unwind = 0,
0016     no_stack_unwind
0017 };
0018 
0019 }}
0020 
0021 #endif // BOOST_COROUTINES_FLAGS_H