mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-05-07 20:00:06 -05: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