/* Copyright 2020 Glen Joseph Fernandes (glenjofe@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_DISJUNCTION_HPP_INCLUDED #define BOOST_TT_DISJUNCTION_HPP_INCLUDED #include #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) #include #endif namespace boost { #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template struct disjunction : false_type { }; template struct disjunction : T { }; template struct disjunction : conditional >::type { }; #else template struct disjunction : conditional::type { }; #endif } /* boost */ #endif