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 external/fmt from d02c582 to 0502936 #312

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 62 files
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+9 −1 .github/workflows/doc.yml
+39 −11 .github/workflows/linux.yml
+7 −2 .github/workflows/macos.yml
+56 −14 .github/workflows/windows.yml
+8 −24 CMakeLists.txt
+519 −2 ChangeLog.rst
+1 −1 LICENSE.rst
+20 −13 README.rst
+11 −2 doc/CMakeLists.txt
+218 −138 doc/api.rst
+3 −4 doc/build.py
+1 −1 doc/index.rst
+138 −12 doc/syntax.rst
+463 −251 include/fmt/chrono.h
+4 −3 include/fmt/color.h
+22 −17 include/fmt/compile.h
+621 −805 include/fmt/core.h
+87 −117 include/fmt/format-inl.h
+829 −375 include/fmt/format.h
+37 −45 include/fmt/os.h
+101 −37 include/fmt/ostream.h
+91 −52 include/fmt/printf.h
+305 −146 include/fmt/ranges.h
+270 −2 include/fmt/std.h
+40 −8 include/fmt/xchar.h
+1 −5 src/format.cc
+81 −26 src/os.cc
+0 −43 support/appveyor-build.py
+0 −31 support/appveyor.yml
+0 −54 support/cmake/cxx14.cmake
+6 −0 support/manage.py
+19 −7 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+364 −20 test/chrono-test.cc
+2 −2 test/compile-error-test/CMakeLists.txt
+1 −1 test/compile-fp-test.cc
+17 −5 test/compile-test.cc
+101 −176 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
+158 −4 test/format-impl-test.cc
+247 −281 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+1 −7 test/gtest/CMakeLists.txt
+2 −2 test/gtest/gmock-gtest-all.cc
+1 −1 test/module-test.cc
+11 −12 test/os-test.cc
+46 −30 test/ostream-test.cc
+1 −7 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+5 −9 test/printf-test.cc
+136 −36 test/ranges-test.cc
+1 −1 test/scan-test.cc
+16 −11 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+170 −3 test/std-test.cc
+4 −4 test/unicode-test.cc
+1 −1 test/util.h
+133 −35 test/xchar-test.cc