Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:34

0001 
0002 //          Copyright Oliver Kowalke 2014.
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_COROUTINES2_PROTECTED_FIXEDSIZE_H
0008 #define BOOST_COROUTINES2_PROTECTED_FIXEDSIZE_H
0009 
0010 #include <exception>
0011 
0012 #include <boost/assert.hpp>
0013 #include <boost/config.hpp>
0014 #include <boost/context/protected_fixedsize_stack.hpp>
0015 
0016 #include <boost/coroutine2/detail/coroutine.hpp>
0017 
0018 #ifdef BOOST_HAS_ABI_HEADERS
0019 #  include BOOST_ABI_PREFIX
0020 #endif
0021 
0022 namespace boost {
0023 namespace coroutines2 {
0024 
0025 using protected_fixedsize_stack = boost::context::protected_fixedsize_stack;
0026 
0027 }}
0028 
0029 #ifdef BOOST_HAS_ABI_HEADERS
0030 #  include BOOST_ABI_SUFFIX
0031 #endif
0032 
0033 #endif // BOOST_COROUTINES2_PROTECTED_FIXEDSIZE_H