]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/coroutine/include/boost/coroutine/flags.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / coroutine / include / boost / coroutine / flags.hpp
CommitLineData
7c673cae
FG
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
10namespace boost {
11namespace coroutines {
12
13enum flag_unwind_t
14{
15 stack_unwind = 0,
16 no_stack_unwind
17};
18
19}}
20
21#endif // BOOST_COROUTINES_FLAGS_H