Update format_to usage

This commit is contained in:
Victor Zverovich 2021-07-13 07:56:24 -07:00
parent e41ac1f875
commit 2038bf6183

View File

@ -13,8 +13,8 @@ void invoke_inner(fmt::string_view format_str, Rep rep) {
#if FMT_FUZZ_FORMAT_TO_STRING #if FMT_FUZZ_FORMAT_TO_STRING
std::string message = fmt::format(format_str, value); std::string message = fmt::format(format_str, value);
#else #else
fmt::memory_buffer buf; auto buf = fmt::memory_buffer();
fmt::format_to(buf, format_str, value); fmt::format_to(std::back_inserter(buf), format_str, value);
#endif #endif
} catch (std::exception&) { } catch (std::exception&) {
} }