Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:09

0001 /*
0002 Copyright 2017-2018 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License,
0006 Version 1.0. (See accompanying file LICENSE_1_0.txt
0007 or copy at http://www.boost.org/LICENSE_1_0.txt)
0008 */
0009 
0010 #ifndef BOOST_TT_DETECTED_HPP_INCLUDED
0011 #define BOOST_TT_DETECTED_HPP_INCLUDED
0012 
0013 #include <boost/type_traits/detail/detector.hpp>
0014 #include <boost/type_traits/nonesuch.hpp>
0015 
0016 namespace boost {
0017 
0018 template<template<class...> class Op, class... Args>
0019 using detected_t = typename
0020     detail::detector<nonesuch, void, Op, Args...>::type;
0021 
0022 } /* boost */
0023 
0024 #endif