-
Notifications
You must be signed in to change notification settings - Fork 7
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 1a79bbf
Bumps [3rdparty/fmt](https://github.com/fmtlib/fmt) from `06948fa` to `1a79bbf`. - [Release notes](https://github.com/fmtlib/fmt/releases) - [Commits](fmtlib/fmt@06948fa...1a79bbf) --- updated-dependencies: - dependency-name: 3rdparty/fmt dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
7e07589
commit ffd0724
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule fmt
updated
36 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 | |
+11 −7 | CMakeLists.txt | |
+82 −19 | ChangeLog.md | |
+9 −9 | README.md | |
+2 −2 | doc/api.md | |
+1 −2 | doc/syntax.md | |
+394 −290 | include/fmt/base.h | |
+207 −216 | include/fmt/chrono.h | |
+5 −6 | include/fmt/color.h | |
+14 −15 | include/fmt/compile.h | |
+33 −9 | include/fmt/format-inl.h | |
+413 −473 | include/fmt/format.h | |
+21 −33 | 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 | |
+26 −29 | 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 | |
+103 −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 |