yuzu/externals/vcpkg/packages/boost-type-traits_x64-windows/include/boost/type_traits/negation.hpp

24 lines
472 B
C++
Executable File

/*
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_NEGATION_HPP_INCLUDED
#define BOOST_TT_NEGATION_HPP_INCLUDED
#include <boost/type_traits/integral_constant.hpp>
namespace boost {
template<class T>
struct negation
: integral_constant<bool, !bool(T::value)> { };
} /* boost */
#endif