Consistently use fmt:: when invoking format_to. (#3779)
This has been done partially in previous commits: *2ac6c5ca8b*258000064d*ba50c19e82*5ab9d39253A 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:
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user