mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
Stop using yet another template alias (contains_aggregate_function_t)
This commit is contained in:
parent
e364afe38f
commit
325d64828e
@ -231,7 +231,7 @@ namespace sqlpp
|
|||||||
static_check_t<logic::all_t<detail::is_expression_impl<Expressions>::type::value...>::value,
|
static_check_t<logic::all_t<detail::is_expression_impl<Expressions>::type::value...>::value,
|
||||||
assert_where_expressions_t>,
|
assert_where_expressions_t>,
|
||||||
static_check_t<logic::all_t<is_boolean_t<Expressions>::value...>::value, assert_where_boolean_t>,
|
static_check_t<logic::all_t<is_boolean_t<Expressions>::value...>::value, assert_where_boolean_t>,
|
||||||
static_check_t<logic::all_t<(not contains_aggregate_function_t<Expressions>::value)...>::value,
|
static_check_t<logic::all_t<(not detail::contains_aggregate_function_impl<Expressions>::type::value)...>::value,
|
||||||
assert_where_no_aggregate_functions_t>>;
|
assert_where_no_aggregate_functions_t>>;
|
||||||
|
|
||||||
template <typename... Expressions>
|
template <typename... Expressions>
|
||||||
|
Loading…
Reference in New Issue
Block a user