Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
Fixed performance regressions when using
std::back_insert_iterator
withfmt::format_to
(Potential performance regression of vformat_to in libfmt 11 compared to libfmt 10.2.1 fmtlib/fmt#4070).Fixed handling of
std::generator
and move-only iterators (trunk doesn't work withstd::generator
fmtlib/fmt#4053, Fix usage with std::generator fmtlib/fmt#4057). Thanks @Arghnews.Made
formatter<std::string_view>::parse
work with types convertible tostd::string_view
(formatter simply inheriting from built-in formatter is not recognised fmtlib/fmt#4036, Enable inheriting from formatter<std::string_view> fmtlib/fmt#4055). Thanks @Arghnews.Made
volatile void*
formattable (can't print volatile void* fmtlib/fmt#4049, Support printing (const) volatile void* fmtlib/fmt#4056). Thanks @Arghnews.Made
Glib::ustring
not be confused withstd::string
(Building a GTK app with 11.0.1 fmtlib/fmt#4052).Made
fmt::context
iterator compatible with STL algorithms that rely on iterator category (Error oniterator_category = int
with GCC 13 fmtlib/fmt#4079).