Silence warning in gcc about unused parameter

This commit is contained in:
rbock
2016-12-25 14:44:26 +01:00
parent f211023981
commit ee6aa6e2c5

View File

@@ -376,7 +376,7 @@ namespace sqlpp
template <typename... T>
static constexpr auto _check_args(T... args) -> decltype(_check_tuple(detail::column_tuple_merge(args...)))
{
return {};
return _check_tuple(detail::column_tuple_merge(args...));
}
template <typename Check, typename T>