mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-05 04:30:43 -06:00
Fixed bug in type set
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user