-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump 3rdparty/fmt from
06948fa
to 993f56c
Bumps [3rdparty/fmt](https://github.com/fmtlib/fmt) from `06948fa` to `993f56c`. - [Release notes](https://github.com/fmtlib/fmt/releases) - [Commits](fmtlib/fmt@06948fa...993f56c) --- updated-dependencies: - dependency-name: 3rdparty/fmt dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
7e07589
commit f904589
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule fmt
updated
35 files
+2 −2 | .github/workflows/cifuzz.yml | |
+1 −30 | .github/workflows/lint.yml | |
+2 −2 | .github/workflows/scorecard.yml | |
+1 −1 | .github/workflows/windows.yml | |
+9 −5 | CMakeLists.txt | |
+82 −19 | ChangeLog.md | |
+9 −9 | README.md | |
+2 −2 | doc/api.md | |
+371 −274 | include/fmt/base.h | |
+28 −23 | include/fmt/chrono.h | |
+5 −6 | include/fmt/color.h | |
+14 −15 | include/fmt/compile.h | |
+33 −9 | include/fmt/format-inl.h | |
+369 −460 | include/fmt/format.h | |
+1 −1 | include/fmt/os.h | |
+32 −30 | include/fmt/printf.h | |
+10 −3 | include/fmt/ranges.h | |
+62 −25 | include/fmt/std.h | |
+8 −0 | src/fmt.cc | |
+1 −0 | src/format.cc | |
+21 −19 | src/os.cc | |
+2 −3 | support/Vagrantfile | |
+43 −0 | support/check-commits | |
+40 −151 | support/manage.py | |
+35 −3 | support/mkdocs | |
+311 −288 | support/python/mkdocstrings_handlers/cxx/__init__.py | |
+10 −19 | test/CMakeLists.txt | |
+55 −22 | test/base-test.cc | |
+1 −9 | test/compile-test.cc | |
+74 −16 | test/format-test.cc | |
+25 −0 | test/perf-sanity.cc | |
+4 −0 | test/printf-test.cc | |
+25 −10 | test/ranges-test.cc | |
+7 −4 | test/scan.h | |
+27 −0 | test/std-test.cc |