Fixed bug in type set

This commit is contained in:
Roland Bock
2013-09-19 08:04:01 +02:00
parent 705c16e5a3
commit 8189dc6a00

View File

@@ -185,7 +185,7 @@ namespace sqlpp
template<typename A>
struct InversePredicate
{
static constexpr bool value = Predicate<A>::value;
static constexpr bool value = not Predicate<A>::value;
};
using type = typename make_set_if<InversePredicate, T...>::type;
};