Consistently use fmt:: when invoking format_to. (#3779)

This has been done partially in previous commits:

* 2ac6c5ca8b
* 258000064d
* ba50c19e82
* 5ab9d39253

A patch that includes the `std::error_code` changes here is
upstream in vcpkg, so that will be able to be removed when
updating to the next release.
This commit is contained in:
Bruce Mitchener
2024-01-01 06:57:03 -08:00
committed by GitHub
parent f5ca178c12
commit ebd5c8f994
5 changed files with 17 additions and 16 deletions
+1 -1
View File
@@ -867,7 +867,7 @@ enum { inline_buffer_size = 500 };
**Example**::
auto out = fmt::memory_buffer();
format_to(std::back_inserter(out), "The answer is {}.", 42);
fmt::format_to(std::back_inserter(out), "The answer is {}.", 42);
This will append the following output to the ``out`` object: