style: pre-commit fixes

This commit is contained in:
pre-commit-ci[bot] 2024-09-06 13:55:24 +00:00
parent 85052afe65
commit 23ceaba974
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ struct as_return_type {
};
template <typename T>
struct as_return_type<T, typename std::enable_if<is_descr<decltype(T::return_name)>::value>::type> {
struct as_return_type<T,
typename std::enable_if<is_descr<decltype(T::return_name)>::value>::type> {
static constexpr auto name = T::return_name;
};