0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Stop using yet another template alias (contains_aggregate_function_t)

This commit is contained in:
rbock 2015-12-28 09:30:02 +01:00
parent e364afe38f
commit 325d64828e

View File

@ -231,7 +231,7 @@ namespace sqlpp
static_check_t<logic::all_t<detail::is_expression_impl<Expressions>::type::value...>::value,
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<(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>>;
template <typename... Expressions>