Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
torshepherd committed Jul 13, 2024
1 parent 294bda0 commit 6dc621a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/fmt/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,8 @@ constexpr auto to_string_view(const Char* s) -> basic_string_view<Char> {
return s;
}
template <typename T, FMT_ENABLE_IF(is_std_string_like<T>::value)>
constexpr auto to_string_view(const T& s) -> basic_string_view<typename T::value_type> {
constexpr auto to_string_view(const T& s)
-> basic_string_view<typename T::value_type> {
return s;
}
template <typename Char>
Expand Down

0 comments on commit 6dc621a

Please sign in to comment.