Sha256: 0bc9ba4999300d0fb9ca2e90a2f97d535dcf9d89362c7291037fe836f068eca6
Contents?: true
Size: 1.03 KB
Versions: 23
Compression:
Stored size: 1.03 KB
Contents
/* Copyright 2017 Glen Joseph Fernandes <glenjofe -at- gmail.com> 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_TT_MAKE_VOID_HPP_INCLUDED #define BOOST_TT_MAKE_VOID_HPP_INCLUDED #include <boost/config.hpp> namespace boost { #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template<class...> struct make_void { typedef void type; }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template<class... Ts> using void_t = typename make_void<Ts...>::type; #endif #else /* BOOST_NO_CXX11_VARIADIC_TEMPLATES */ template<class = void, class = void, class = void, class = void, class = void> struct make_void { typedef void type; }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template<class A = void, class B = void, class C = void, class D = void, class E = void> using void_t = typename make_void<A, B, C, D, E>::type; #endif #endif } /* boost */ #endif
Version data entries
23 entries across 23 versions & 1 rubygems