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

Bump 3rdparty/fmt from 06948fa to 2cb3b7c #169

Closed
wants to merge 1 commit into from
Closed
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 3rdparty/fmt
Submodule fmt updated 56 files
+6 −0 .clang-format
+3 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+2 −31 .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
+20 −10 CMakeLists.txt
+86 −19 ChangeLog.md
+10 −9 README.md
+11 −12 doc/api.md
+1 −1 doc/index.md
+2 −3 doc/syntax.md
+17 −28 include/fmt/args.h
+1,842 −1,998 include/fmt/base.h
+376 −470 include/fmt/chrono.h
+20 −22 include/fmt/color.h
+40 −17 include/fmt/compile.h
+97 −54 include/fmt/format-inl.h
+989 −1,115 include/fmt/format.h
+43 −55 include/fmt/os.h
+34 −87 include/fmt/ostream.h
+109 −132 include/fmt/printf.h
+38 −68 include/fmt/ranges.h
+113 −52 include/fmt/std.h
+99 −53 include/fmt/xchar.h
+17 −1 src/fmt.cc
+4 −1 src/format.cc
+27 −30 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
+12 −20 test/CMakeLists.txt
+125 −122 test/base-test.cc
+40 −15 test/chrono-test.cc
+1 −27 test/compile-error-test/CMakeLists.txt
+2 −9 test/compile-test.cc
+162 −24 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
+25 −0 test/perf-sanity.cc
+4 −0 test/printf-test.cc
+31 −13 test/ranges-test.cc
+3 −3 test/scan-test.cc
+8 −5 test/scan.h
+42 −2 test/std-test.cc
+1 −1 test/test-assert.h
+1 −1 test/unicode-test.cc
+4 −5 test/util.cc
+5 −96 test/xchar-test.cc
Loading