From 25ff700c017927102e732fbe886f04d9fcdf024a Mon Sep 17 00:00:00 2001 From: rbock Date: Sat, 3 Oct 2015 10:17:59 +0200 Subject: [PATCH] Partially reverted all_t et al to avoid warnings about unused variables --- include/sqlpp11/logic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sqlpp11/logic.h b/include/sqlpp11/logic.h index 14f2e638..cff498c0 100644 --- a/include/sqlpp11/logic.h +++ b/include/sqlpp11/logic.h @@ -39,14 +39,14 @@ namespace sqlpp // see http://lists.boost.org/Archives/boost/2014/05/212946.php :-) template - using all_t = std::is_same, logic_helper<(B, true)...>>; + using all_t = std::is_same, logic_helper<(B or true)...>>; template using any_t = - std::integral_constant, logic_helper<(B, false)...>>::value>; + std::integral_constant, logic_helper<(B and false)...>>::value>; template - using none_t = std::is_same, logic_helper<(B, false)...>>; + using none_t = std::is_same, logic_helper<(B or false)...>>; template struct not_impl;