Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External: Update bundled libfmt #4222

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion External/fmt
Submodule fmt updated 52 files
+6 −0 .clang-format
+5 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+8 −36 .github/workflows/lint.yml
+15 −13 .github/workflows/linux.yml
+6 −2 .github/workflows/macos.yml
+4 −4 .github/workflows/scorecard.yml
+4 −9 .github/workflows/windows.yml
+11 −5 CMakeLists.txt
+109 −0 ChangeLog.md
+1 −0 README.md
+14 −12 doc/api.md
+2 −2 doc/index.md
+4 −5 doc/syntax.md
+17 −28 include/fmt/args.h
+1,899 −2,040 include/fmt/base.h
+376 −470 include/fmt/chrono.h
+20 −22 include/fmt/color.h
+46 −24 include/fmt/compile.h
+65 −46 include/fmt/format-inl.h
+1,099 −1,292 include/fmt/format.h
+43 −55 include/fmt/os.h
+34 −87 include/fmt/ostream.h
+107 −130 include/fmt/printf.h
+95 −129 include/fmt/ranges.h
+73 −45 include/fmt/std.h
+103 −57 include/fmt/xchar.h
+17 −1 src/fmt.cc
+4 −1 src/format.cc
+6 −11 src/os.cc
+35 −3 support/mkdocs
+311 −290 support/python/mkdocstrings_handlers/cxx/__init__.py
+4 −19 test/CMakeLists.txt
+122 −144 test/base-test.cc
+40 −15 test/chrono-test.cc
+1 −27 test/compile-error-test/CMakeLists.txt
+22 −12 test/compile-test.cc
+2 −2 test/format-impl-test.cc
+142 −26 test/format-test.cc
+19 −11 test/gtest/gmock-gtest-all.cc
+24 −10 test/gtest/gmock/gmock.h
+4 −3 test/gtest/gtest/gtest.h
+24 −0 test/no-builtin-types-test.cc
+1 −1 test/os-test.cc
+13 −13 test/ranges-test.cc
+3 −3 test/scan-test.cc
+5 −5 test/scan.h
+18 −2 test/std-test.cc
+1 −1 test/test-assert.h
+1 −1 test/unicode-test.cc
+4 −5 test/util.cc
+15 −105 test/xchar-test.cc
2 changes: 1 addition & 1 deletion FEXCore/include/FEXCore/fextl/fmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FMT_NODISCARD auto to_string(const fextl::fmt::basic_memory_buffer<Char, SIZE>&
return fextl::basic_string<Char>(buf.data(), size);
}

FMT_FUNC FMT_INLINE fextl::string vformat(::fmt::string_view fmt, ::fmt::format_args args) {
FMT_INLINE fextl::string vformat(::fmt::string_view fmt, ::fmt::format_args args) {
// Don't optimize the "{}" case to keep the binary size small and because it
// can be better optimized in fmt::format anyway.
auto buffer = memory_buffer();
Expand Down
Loading