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

Update format for latest gcc and esp-idf #130

Merged
merged 3 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions components/format/include/format.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#pragma once

#include <string>

#define FMT_HEADER_ONLY
#include <fmt/color.h>
#include <fmt/format.h>
#include <fmt/ranges.h>
#include <fmt/std.h>
// to print time
#include <fmt/chrono.h>
// to print files
#include <fmt/ostream.h>
2 changes: 1 addition & 1 deletion external/fmt
Submodule fmt updated 75 files
+8 −0 .github/dependabot.yml
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+9 −1 .github/workflows/doc.yml
+15 −3 .github/workflows/linux.yml
+17 −2 .github/workflows/macos.yml
+65 −0 .github/workflows/scorecard.yml
+11 −3 .github/workflows/windows.yml
+111 −45 CMakeLists.txt
+5,282 −0 ChangeLog.md
+0 −5,255 ChangeLog.rst
+1 −1 LICENSE
+63 −41 README.rst
+6 −6 doc/_static/bootstrap.min.js
+126 −92 doc/api.rst
+5 −6 doc/build.py
+133 −7 doc/syntax.rst
+38 −0 doc/usage.rst
+1 −1 include/fmt/args.h
+448 −338 include/fmt/chrono.h
+19 −37 include/fmt/color.h
+27 −104 include/fmt/compile.h
+743 −1,133 include/fmt/core.h
+69 −157 include/fmt/format-inl.h
+1,019 −759 include/fmt/format.h
+50 −56 include/fmt/os.h
+48 −71 include/fmt/ostream.h
+210 −175 include/fmt/printf.h
+153 −144 include/fmt/ranges.h
+268 −59 include/fmt/std.h
+43 −33 include/fmt/xchar.h
+38 −29 src/fmt.cc
+1 −2 src/format.cc
+77 −48 src/os.cc
+3 −3 support/Vagrantfile
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+2 −2 support/bazel/BUILD.bazel
+5 −4 support/bazel/README.md
+1 −1 support/build.gradle
+0 −54 support/cmake/cxx14.cmake
+1 −1 support/manage.py
+0 −159 support/rst2md.py
+21 −4 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/args-test.cc
+387 −36 test/chrono-test.cc
+2 −2 test/compile-error-test/CMakeLists.txt
+1 −0 test/compile-fp-test.cc
+19 −38 test/compile-test.cc
+109 −237 test/core-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+28 −99 test/format-impl-test.cc
+270 −330 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+3 −1 test/gtest-extra-test.cc
+2 −2 test/gtest-extra.cc
+2 −7 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+1 −1 test/gtest/gmock-gtest-all.cc
+2 −2 test/mock-allocator.h
+36 −88 test/module-test.cc
+15 −44 test/os-test.cc
+34 −48 test/ostream-test.cc
+1 −7 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+13 −37 test/printf-test.cc
+168 −62 test/ranges-test.cc
+3 −3 test/scan-test.cc
+23 −25 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+165 −20 test/std-test.cc
+6 −2 test/util.cc
+2 −6 test/util.h
+176 −70 test/xchar-test.cc
Loading