lib/fmt/ToBuffer: add missing template parameters
This commit is contained in:
@@ -54,11 +54,11 @@ auto
|
|||||||
FmtBuffer(const S &format_str, Args&&... args) noexcept
|
FmtBuffer(const S &format_str, Args&&... args) noexcept
|
||||||
{
|
{
|
||||||
#if FMT_VERSION >= 90000
|
#if FMT_VERSION >= 90000
|
||||||
return VFmtBuffer(format_str,
|
return VFmtBuffer<size>(format_str,
|
||||||
fmt::make_format_args(args...));
|
fmt::make_format_args(args...));
|
||||||
#else
|
#else
|
||||||
return VFmtBuffer(fmt::to_string_view(format_str),
|
return VFmtBuffer<size>(fmt::to_string_view(format_str),
|
||||||
fmt::make_args_checked<Args...>(format_str,
|
fmt::make_args_checked<Args...>(format_str,
|
||||||
args...));
|
args...));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user