Skip to content

Commit 453be2e

Browse files
committed
clang-format
1 parent 83497e4 commit 453be2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/spdlog/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
#define SPDLOG_VER_MAJOR 1
77
#define SPDLOG_VER_MINOR 4
8-
#define SPDLOG_VER_PATCH 0
8+
#define SPDLOG_VER_PATCH 1
99

1010
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)

tests/test_stdout_api.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ TEST_CASE("wchar_api", "[stdout]")
8888
l->set_level(spdlog::level::trace);
8989
l->trace(L"Test wchar_api");
9090
l->trace(L"Test wchar_api {}", L"param");
91-
l->trace(L"Test wchar_api {}", 1);
91+
l->trace(L"Test wchar_api {}", 1);
9292
l->trace(L"Test wchar_api {}", std::wstring{L"wstring param"});
9393
l->trace(std::wstring{L"Test wchar_api wstring"});
9494
SPDLOG_LOGGER_DEBUG(l, L"Test SPDLOG_LOGGER_DEBUG {}", L"param");

0 commit comments

Comments
 (0)