File indexing completed on 2025-01-30 09:35:34
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_FIBER_DETAIL_DISABLE_OVERLOAD_H
0008 #define BOOST_FIBER_DETAIL_DISABLE_OVERLOAD_H
0009
0010 #include <type_traits>
0011
0012 #include <boost/config.hpp>
0013 #include <boost/context/detail/disable_overload.hpp>
0014
0015 #include <boost/fiber/detail/config.hpp>
0016
0017 #ifdef BOOST_HAS_ABI_HEADERS
0018 # include BOOST_ABI_PREFIX
0019 #endif
0020
0021 namespace boost {
0022 namespace fibers {
0023 namespace detail {
0024
0025 template< typename X, typename Y >
0026 using disable_overload = boost::context::detail::disable_overload< X, Y >;
0027
0028 }}}
0029
0030 #ifdef BOOST_HAS_ABI_HEADERS
0031 #include BOOST_ABI_SUFFIX
0032 #endif
0033
0034 #endif