2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2014-05-29 16:22:00 +00:00
|
|
|
#ifndef SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP
|
|
|
|
#define SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP
|
2011-11-14 10:45:59 +00:00
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-03-25 03:43:47 +00:00
|
|
|
#include <sprout/type_traits/identity.hpp>
|
2011-11-14 10:45:59 +00:00
|
|
|
#include <sprout/weed/unused.hpp>
|
|
|
|
#include <sprout/weed/traits/type/is_unused.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
namespace attr_cnv {
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
2011-11-14 10:45:59 +00:00
|
|
|
//
|
|
|
|
// negate
|
|
|
|
//
|
|
|
|
template<typename T, typename = void>
|
|
|
|
struct negate;
|
|
|
|
// -unused -> unused
|
|
|
|
template<typename T>
|
|
|
|
struct negate<
|
|
|
|
T,
|
|
|
|
typename std::enable_if<
|
|
|
|
sprout::weed::traits::is_unused<T>::value
|
|
|
|
>::type
|
2013-03-25 03:43:47 +00:00
|
|
|
>
|
|
|
|
: public sprout::identity<sprout::weed::unused>
|
|
|
|
{};
|
2013-11-20 13:04:11 +00:00
|
|
|
} // namespace results
|
2011-11-14 10:45:59 +00:00
|
|
|
} // namespace attr_cnv
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
2014-05-29 16:22:00 +00:00
|
|
|
#endif // #ifndef SPROUT_WEED_ATTR_CNV_RESULTS_NEGATE_HPP
|