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 spdlog from v1.14.1 to v1.15.0 #238

Open
wants to merge 1 commit into
base: main
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 3rdparty/spdlog
Submodule spdlog updated 46 files
+26 −18 .github/workflows/linux.yml
+28 −0 .github/workflows/macos.yml
+148 −0 .github/workflows/windows.yml
+30 −6 CMakeLists.txt
+10 −3 README.md
+1 −1 bench/async_bench.cpp
+2 −2 bench/bench.cpp
+13 −2 cmake/utils.cmake
+10 −3 example/example.cpp
+5 −7 include/spdlog/async_logger-inl.h
+3 −3 include/spdlog/details/mpmc_blocking_q.h
+3 −3 include/spdlog/details/os-inl.h
+3 −8 include/spdlog/details/thread_pool-inl.h
+3 −14 include/spdlog/details/thread_pool.h
+54 −61 include/spdlog/fmt/bundled/args.h
+3,077 −0 include/spdlog/fmt/bundled/base.h
+335 −143 include/spdlog/fmt/bundled/chrono.h
+81 −112 include/spdlog/fmt/bundled/color.h
+52 −58 include/spdlog/fmt/bundled/compile.h
+4 −2,968 include/spdlog/fmt/bundled/core.h
+277 −27 include/spdlog/fmt/bundled/format-inl.h
+624 −732 include/spdlog/fmt/bundled/format.h
+86 −102 include/spdlog/fmt/bundled/os.h
+25 −59 include/spdlog/fmt/bundled/ostream.h
+117 −136 include/spdlog/fmt/bundled/printf.h
+314 −170 include/spdlog/fmt/bundled/ranges.h
+278 −116 include/spdlog/fmt/bundled/std.h
+109 −46 include/spdlog/fmt/bundled/xchar.h
+4 −0 include/spdlog/mdc.h
+16 −2 include/spdlog/pattern_formatter-inl.h
+1 −1 include/spdlog/sinks/ansicolor_sink.h
+4 −4 include/spdlog/sinks/base_sink.h
+1 −1 include/spdlog/sinks/callback_sink.h
+3 −0 include/spdlog/sinks/daily_file_sink.h
+2 −0 include/spdlog/sinks/hourly_file_sink.h
+1 −1 include/spdlog/sinks/msvc_sink.h
+1 −1 include/spdlog/sinks/rotating_file_sink-inl.h
+3 −2 include/spdlog/sinks/syslog_sink.h
+9 −0 include/spdlog/sinks/wincolor_sink-inl.h
+2 −2 include/spdlog/version.h
+12 −10 src/bundled_fmtlib_format.cpp
+4 −2 tests/CMakeLists.txt
+6 −1 tests/includes.h
+0 −44 tests/test_async.cpp
+20 −2 tests/test_misc.cpp
+2 −0 tests/test_pattern_formatter.cpp