mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-01 10:41:22 -06:00
Silence warning in gcc about unused parameter
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user