summaryrefslogtreecommitdiff
path: root/boost/coroutine2/detail/state.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/coroutine2/detail/state.hpp')
-rw-r--r--boost/coroutine2/detail/state.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/boost/coroutine2/detail/state.hpp b/boost/coroutine2/detail/state.hpp
index e338a5aed4..2541fb4ede 100644
--- a/boost/coroutine2/detail/state.hpp
+++ b/boost/coroutine2/detail/state.hpp
@@ -25,7 +25,8 @@ namespace detail {
enum class state_t : unsigned int {
none = 0,
complete = 1 << 1,
- unwind = 1 << 2
+ unwind = 1 << 2,
+ destroy = 1 << 3
};