Skip to content

Commit

Permalink
fmt: pickup v8.1.1
Browse files Browse the repository at this point in the history
update fmt submodule so we can use fmt::join() without defining
formatter specialization for types which already have `operator<<()`.

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov committed Jul 25, 2022
1 parent aa5769e commit b287fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmt
Submodule fmt updated 72 files
+1 −0 .github/workflows/doc.yml
+2 −1 .github/workflows/linux.yml
+11 −6 CMakeLists.txt
+494 −18 ChangeLog.rst
+6 −6 README.rst
+30 −18 doc/api.rst
+3 −1 doc/basic-bootstrap/layout.html
+8 −3 doc/build.py
+5 −0 doc/fmt.less
+15 −14 doc/syntax.rst
+2 −0 include/fmt/args.h
+970 −211 include/fmt/chrono.h
+24 −13 include/fmt/color.h
+14 −11 include/fmt/compile.h
+498 −268 include/fmt/core.h
+286 −264 include/fmt/format-inl.h
+604 −327 include/fmt/format.h
+30 −18 include/fmt/os.h
+31 −77 include/fmt/ostream.h
+12 −7 include/fmt/printf.h
+436 −110 include/fmt/ranges.h
+6 −6 include/fmt/xchar.h
+0 −1 src/fmt.cc
+49 −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
+13 −6 support/manage.py
+201 −0 support/printable.py
+1 −1 support/rst2md.py
+30 −31 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
+224 −170 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 b287fad

Please sign in to comment.