Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
453be2e0
Commit
453be2e0
authored
Sep 23, 2019
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clang-format
parent
83497e4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/spdlog/version.h
include/spdlog/version.h
+1
-1
tests/test_stdout_api.cpp
tests/test_stdout_api.cpp
+1
-1
No files found.
include/spdlog/version.h
View file @
453be2e0
...
...
@@ -5,6 +5,6 @@
#define SPDLOG_VER_MAJOR 1
#define SPDLOG_VER_MINOR 4
#define SPDLOG_VER_PATCH
0
#define SPDLOG_VER_PATCH
1
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)
tests/test_stdout_api.cpp
View file @
453be2e0
...
...
@@ -88,7 +88,7 @@ TEST_CASE("wchar_api", "[stdout]")
l
->
set_level
(
spdlog
::
level
::
trace
);
l
->
trace
(
L"Test wchar_api"
);
l
->
trace
(
L"Test wchar_api {}"
,
L"param"
);
l
->
trace
(
L"Test wchar_api {}"
,
1
);
l
->
trace
(
L"Test wchar_api {}"
,
1
);
l
->
trace
(
L"Test wchar_api {}"
,
std
::
wstring
{
L"wstring param"
});
l
->
trace
(
std
::
wstring
{
L"Test wchar_api wstring"
});
SPDLOG_LOGGER_DEBUG
(
l
,
L"Test SPDLOG_LOGGER_DEBUG {}"
,
L"param"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment