Skip to content

Commit

Permalink
chore(build): update fmt and spdlog submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
luishfonseca committed Sep 29, 2023
1 parent c62d64d commit cce840e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/lib/fmt
Submodule fmt updated 69 files
+2 −1 .github/workflows/linux.yml
+10 −5 CMakeLists.txt
+385 −8 ChangeLog.rst
+6 −6 README.rst
+29 −17 doc/api.rst
+3 −1 doc/basic-bootstrap/layout.html
+4 −1 doc/build.py
+15 −14 doc/syntax.rst
+2 −0 include/fmt/args.h
+970 −211 include/fmt/chrono.h
+23 −12 include/fmt/color.h
+14 −11 include/fmt/compile.h
+490 −256 include/fmt/core.h
+286 −263 include/fmt/format-inl.h
+588 −314 include/fmt/format.h
+30 −18 include/fmt/os.h
+31 −77 include/fmt/ostream.h
+12 −7 include/fmt/printf.h
+436 −111 include/fmt/ranges.h
+5 −5 include/fmt/xchar.h
+0 −1 src/fmt.cc
+46 −0 src/format.cc
+9 −8 src/os.cc
+1 −0 support/bazel/.bazelrc
+1 −0 support/bazel/.bazelversion
+29 −0 support/bazel/BUILD.bazel
+73 −0 support/bazel/README.md
+1 −0 support/bazel/WORKSPACE.bazel
+5 −5 support/manage.py
+201 −0 support/printable.py
+26 −29 test/CMakeLists.txt
+24 −11 test/args-test.cc
+279 −39 test/chrono-test.cc
+6 −0 test/color-test.cc
+169 −45 test/compile-error-test/CMakeLists.txt
+62 −0 test/compile-fp-test.cc
+18 −1 test/compile-test.cc
+97 −21 test/core-test.cc
+10 −9 test/enforce-checks-test.cc
+1 −2 test/find-package-test/main.cc
+0 −856 test/format
+7 −10 test/format-impl-test.cc
+223 −171 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+5 −3 test/fuzzing/build.sh
+6 −5 test/fuzzing/chrono-duration.cc
+32 −0 test/fuzzing/chrono-timepoint.cc
+5 −5 test/fuzzing/float.cc
+7 −5 test/fuzzing/fuzzer-common.h
+5 −3 test/fuzzing/named-arg.cc
+6 −5 test/fuzzing/one-arg.cc
+2 −1 test/fuzzing/two-args.cc
+3 −4 test/gtest-extra.cc
+7 −1 test/gtest-extra.h
+7 −0 test/gtest/CMakeLists.txt
+4 −0 test/header-only-test.cc
+23 −8 test/module-test.cc
+18 −0 test/noexception-test.cc
+22 −23 test/os-test.cc
+32 −13 test/ostream-test.cc
+0 −26 test/posix-mock-test.cc
+0 −6 test/printf-test.cc
+17 −0 test/ranges-odr-test.cc
+101 −2 test/ranges-test.cc
+0 −161 test/std-format-test.cc
+1 −0 test/test-main.cc
+1 −1 test/unicode-test.cc
+6 −2 test/util.h
+78 −3 test/xchar-test.cc

0 comments on commit cce840e

Please sign in to comment.