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_FIBER_DETAIL_DISABLE_OVERLOAD_H
8#define BOOST_FIBER_DETAIL_DISABLE_OVERLOAD_H
9
10#include <type_traits>
11
12#include <boost/config.hpp>
13#include <boost/context/detail/disable_overload.hpp>
14
15#include <boost/fiber/detail/config.hpp>
16
17#ifdef BOOST_HAS_ABI_HEADERS
18# include BOOST_ABI_PREFIX
19#endif
20
21namespace boost {
22namespace fibers {
23namespace detail {
24
25template< typename X, typename Y >
26using disable_overload = boost::context::detail::disable_overload< X, Y >;
27
28}}}
29
30#ifdef BOOST_HAS_ABI_HEADERS
31#include BOOST_ABI_SUFFIX
32#endif
33
34#endif // BOOST_FIBER_DETAIL_DISABLE_OVERLOAD_H
35

source code of boost/libs/fiber/include/boost/fiber/detail/disable_overload.hpp