Fix formatting of named arguments with locale
This commit is contained in:
@@ -4306,7 +4306,7 @@ template <typename Locale, typename... T,
|
||||
FMT_ENABLE_IF(detail::is_locale<Locale>::value)>
|
||||
inline auto format(const Locale& loc, format_string<T...> fmt, T&&... args)
|
||||
-> std::string {
|
||||
return vformat(loc, string_view(fmt), fmt::make_format_args(args...));
|
||||
return fmt::vformat(loc, string_view(fmt), fmt::make_format_args(args...));
|
||||
}
|
||||
|
||||
template <typename OutputIt, typename Locale,
|
||||
|
||||
Reference in New Issue
Block a user