1 2 // Copyright Oliver Kowalke 2014. 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_CONTEXT_FLAGS_H 8 #define BOOST_CONTEXT_FLAGS_H 9 10 # include <boost/config.hpp> 11 12 # ifdef BOOST_HAS_ABI_HEADERS 13 # include BOOST_ABI_PREFIX 14 # endif 15 16 namespace boost { 17 namespace context { 18 19 struct exec_ontop_arg_t {}; 20 const exec_ontop_arg_t exec_ontop_arg{}; 21 22 }} 23 24 # ifdef BOOST_HAS_ABI_HEADERS 25 # include BOOST_ABI_SUFFIX 26 # endif 27 28 #endif // BOOST_CONTEXT_FLAGS_H 29