From 7abd62046511c0a37de540f9204342ea5051e097 Mon Sep 17 00:00:00 2001 From: rbock Date: Fri, 8 Apr 2016 21:51:00 +0200 Subject: [PATCH] Trying to appease MSVC --- include/sqlpp11/basic_expression_operators.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/sqlpp11/basic_expression_operators.h b/include/sqlpp11/basic_expression_operators.h index 8c4ae0dd..4601dff7 100644 --- a/include/sqlpp11/basic_expression_operators.h +++ b/include/sqlpp11/basic_expression_operators.h @@ -211,7 +211,7 @@ namespace sqlpp template typename _new_nary_expression::type in(T... t) const { - check_rhs_in_arguments_t...>::_(); + static_combined_check_t...>::_(); return {*static_cast(this), typename wrap_operand::type{t}...}; } @@ -225,7 +225,7 @@ namespace sqlpp template typename _new_nary_expression::type not_in(T... t) const { - check_rhs_in_arguments_t...>::_(); + static_combined_check_t...>::_(); return {*static_cast(this), typename wrap_operand::type{t}...}; }