/usr/include/boost/context/detail
NameSizeModeActions
apply.hpp21190644editdlrm
config.hpp43830644editdlrm
disable_overload.hpp9350644editdlrm
exception.hpp9590644editdlrm
exchange.hpp7410644editdlrm
externc.hpp6700644editdlrm
fcontext.hpp11630644editdlrm
index_sequence.hpp19880644editdlrm
invoke.hpp12880644editdlrm
prefetch.hpp19510644editdlrm
tuple.hpp37090644editdlrm
Edit: /usr/include/boost/context/detail/disable_overload.hpp (935B)
// Copyright Oliver Kowalke 2014. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_CONTEXT_DETAIL_DISABLE_OVERLOAD_H #define BOOST_CONTEXT_DETAIL_DISABLE_OVERLOAD_H #include #include #include #ifdef BOOST_HAS_ABI_HEADERS # include BOOST_ABI_PREFIX #endif namespace boost { namespace context { namespace detail { // http://ericniebler.com/2013/08/07/universal-references-and-the-copy-constructo/ template< typename X, typename Y > using disable_overload = typename std::enable_if< ! std::is_base_of< X, typename std::decay< Y >::type >::value >::type; }}} #ifdef BOOST_HAS_ABI_HEADERS #include BOOST_ABI_SUFFIX #endif #endif // BOOST_CONTEXT_DETAIL_DISABLE_OVERLOAD_H