-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [external/spdlog](https://github.com/gabime/spdlog) from `6192537` to `1e6250e`. - [Release notes](https://github.com/gabime/spdlog/releases) - [Commits](gabime/spdlog@6192537...1e6250e) --- updated-dependencies: - dependency-name: external/spdlog dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8f2d39d
commit c35267e
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule spdlog
updated
20 files
+26 −47 | .github/workflows/linux.yml | |
+28 −0 | .github/workflows/macos.yml | |
+148 −0 | .github/workflows/windows.yml | |
+30 −4 | CMakeLists.txt | |
+9 −2 | README.md | |
+2 −2 | cmake/utils.cmake | |
+1 −1 | example/example.cpp | |
+2 −1 | include/spdlog/details/file_helper-inl.h | |
+15 −3 | include/spdlog/details/os-inl.h | |
+4 −0 | include/spdlog/details/os.h | |
+2 −2 | include/spdlog/sinks/ansicolor_sink-inl.h | |
+0 −1 | include/spdlog/sinks/daily_file_sink.h | |
+1 −1 | include/spdlog/sinks/null_sink.h | |
+5 −0 | include/spdlog/sinks/rotating_file_sink-inl.h | |
+1 −0 | include/spdlog/sinks/rotating_file_sink.h | |
+5 −4 | include/spdlog/sinks/stdout_sinks-inl.h | |
+2 −2 | include/spdlog/version.h | |
+1 −0 | tests/includes.h | |
+20 −0 | tests/test_file_logging.cpp | |
+53 −0 | tests/test_misc.cpp |