From 8189dc6a00277ab1723bc776b1a730433e4cec12 Mon Sep 17 00:00:00 2001 From: Roland Bock Date: Thu, 19 Sep 2013 08:04:01 +0200 Subject: [PATCH] Fixed bug in type set --- include/sqlpp11/detail/set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sqlpp11/detail/set.h b/include/sqlpp11/detail/set.h index e2166142..b21ee504 100644 --- a/include/sqlpp11/detail/set.h +++ b/include/sqlpp11/detail/set.h @@ -185,7 +185,7 @@ namespace sqlpp template struct InversePredicate { - static constexpr bool value = Predicate::value; + static constexpr bool value = not Predicate::value; }; using type = typename make_set_if::type; };