Back to home page

EIC code displayed by LXR

 
 

    


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

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_DETAIL_DISABLE_OVERLOAD_H
0008 #define BOOST_COROUTINES2_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/coroutine2/detail/config.hpp>
0016 
0017 #ifdef BOOST_HAS_ABI_HEADERS
0018 # include BOOST_ABI_PREFIX
0019 #endif
0020 
0021 namespace boost {
0022 namespace coroutines2 {
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 // BOOST_COROUTINES2_DETAIL_DISABLE_OVERLOAD_H