summaryrefslogtreecommitdiff
path: root/boost/coroutine2/fixedsize_stack.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/coroutine2/fixedsize_stack.hpp')
-rw-r--r--boost/coroutine2/fixedsize_stack.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/coroutine2/fixedsize_stack.hpp b/boost/coroutine2/fixedsize_stack.hpp
index 8aa66fee61..54fc3dfddc 100644
--- a/boost/coroutine2/fixedsize_stack.hpp
+++ b/boost/coroutine2/fixedsize_stack.hpp
@@ -22,9 +22,9 @@
namespace boost {
namespace coroutines2 {
-typedef boost::context::fixedsize_stack fixedsize_stack;
+using fixedsize_stack = boost::context::fixedsize_stack;
#if !defined(BOOST_USE_SEGMENTED_STACKS)
-typedef boost::context::default_stack default_stack;
+using default_stack = boost::context::default_stack;
#endif
}}