Skip to content

Commit

Permalink
3rdparty: Update fmt to v10.1.1
Browse files Browse the repository at this point in the history
Updates fmt to v10.1.1.
  • Loading branch information
JordanTheToaster authored and stenzek committed Dec 1, 2023
1 parent cefcd84 commit 574f95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/fmt/fmt
Submodule fmt updated 91 files
+8 −0 .github/dependabot.yml
+6 −0 .github/issue_template.md
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+12 −1 .github/workflows/doc.yml
+42 −10 .github/workflows/linux.yml
+20 −2 .github/workflows/macos.yml
+65 −0 .github/workflows/scorecard.yml
+61 −21 .github/workflows/windows.yml
+13 −26 .gitignore
+113 −75 CMakeLists.txt
+5,282 −0 ChangeLog.md
+0 −4,738 ChangeLog.rst
+1 −1 LICENSE
+76 −51 README.rst
+11 −2 doc/CMakeLists.txt
+6 −6 doc/_static/bootstrap.min.js
+315 −192 doc/api.rst
+9 −6 doc/build.py
+2 −2 doc/index.rst
+163 −10 doc/syntax.rst
+38 −0 doc/usage.rst
+5 −5 include/fmt/args.h
+529 −368 include/fmt/chrono.h
+117 −122 include/fmt/color.h
+62 −170 include/fmt/compile.h
+1,051 −1,338 include/fmt/core.h
+823 −1,801 include/fmt/format-inl.h
+2,341 −876 include/fmt/format.h
+0 −2 include/fmt/locale.h
+76 −149 include/fmt/os.h
+137 −58 include/fmt/ostream.h
+211 −193 include/fmt/printf.h
+369 −431 include/fmt/ranges.h
+498 −0 include/fmt/std.h
+86 −64 include/fmt/xchar.h
+38 −29 src/fmt.cc
+15 −96 src/format.cc
+121 −80 src/os.cc
+3 −3 support/Vagrantfile
+0 −43 support/appveyor-build.py
+0 −31 support/appveyor.yml
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+1 −2 support/bazel/BUILD.bazel
+5 −4 support/bazel/README.md
+1 −1 support/build.gradle
+0 −70 support/cmake/cxx14.cmake
+4 −1 support/cmake/fmt-config.cmake.in
+7 −1 support/manage.py
+1 −1 support/printable.py
+0 −159 support/rst2md.py
+36 −18 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/args-test.cc
+422 −28 test/chrono-test.cc
+6 −0 test/color-test.cc
+42 −4 test/compile-error-test/CMakeLists.txt
+2 −1 test/compile-fp-test.cc
+37 −39 test/compile-test.cc
+167 −232 test/core-test.cc
+18 −0 test/detect-stdfs.cc
+2 −0 test/enforce-checks-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+258 −159 test/format-impl-test.cc
+505 −389 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+2 −2 test/fuzzing/one-arg.cc
+2 −2 test/fuzzing/two-args.cc
+4 −2 test/gtest-extra-test.cc
+3 −3 test/gtest-extra.cc
+3 −8 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+2 −2 test/gtest/gmock-gtest-all.cc
+2 −2 test/mock-allocator.h
+36 −96 test/module-test.cc
+24 −69 test/os-test.cc
+87 −80 test/ostream-test.cc
+3 −90 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+14 −42 test/printf-test.cc
+225 −58 test/ranges-test.cc
+17 −3 test/scan-test.cc
+133 −40 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+294 −0 test/std-test.cc
+2 −3 test/test-main.cc
+4 −4 test/unicode-test.cc
+6 −2 test/util.cc
+2 −6 test/util.h
+243 −116 test/xchar-test.cc

0 comments on commit 574f95a

Please sign in to comment.