Fixed formatting

This commit is contained in:
Sven Mikael Persson 2023-07-17 21:39:04 -04:00
parent 52ca3cd096
commit bc208510c0

View File

@ -538,8 +538,7 @@ constexpr auto to_string_view(const S& s)
}
// Catch basic_format_string for any char type.
template <typename S, FMT_ENABLE_IF(!is_compile_string<S>::value)>
constexpr auto to_string_view(const S& s)
-> decltype(s.get()) {
constexpr auto to_string_view(const S& s) -> decltype(s.get()) {
return s.get();
}
void to_string_view(...);