clang-format

This commit is contained in:
Barry Revzin 2021-12-24 12:57:07 -06:00
parent bc265ea1ef
commit a45ad32bcf

View File

@ -605,7 +605,8 @@ struct formatter<
} }
template <typename T, template <typename T,
FMT_ENABLE_IF(!has_formatter<remove_cvref_t<T>, context>::value)> FMT_ENABLE_IF(!has_formatter<remove_cvref_t<T>, context>::value)>
static auto map(T&& value) -> decltype(mapper().map(static_cast<T&&>(value))) { static auto map(T&& value)
-> decltype(mapper().map(static_cast<T&&>(value))) {
return mapper().map(static_cast<T&&>(value)); return mapper().map(static_cast<T&&>(value));
} }