Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
13fb2550
Commit
13fb2550
authored
May 21, 2017
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue #449
parent
c6ad598a
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
18 deletions
+18
-18
example.cpp
example/example.cpp
+1
-1
android_sink.h
include/spdlog/sinks/android_sink.h
+1
-1
ansicolor_sink.h
include/spdlog/sinks/ansicolor_sink.h
+3
-3
dist_sink.h
include/spdlog/sinks/dist_sink.h
+4
-4
msvc_sink.h
include/spdlog/sinks/msvc_sink.h
+2
-2
null_sink.h
include/spdlog/sinks/null_sink.h
+2
-2
ostream_sink.h
include/spdlog/sinks/ostream_sink.h
+2
-2
syslog_sink.h
include/spdlog/sinks/syslog_sink.h
+3
-3
No files found.
example/example.cpp
View file @
13fb2550
...
...
@@ -143,7 +143,7 @@ struct my_type
}
};
#include
<spdlog/fmt/ostr.h>
// must be included
#include
"spdlog/fmt/ostr.h"
// must be included
void
user_defined_example
()
{
spd
::
get
(
"console"
)
->
info
(
"user defined type: {}"
,
my_type
{
14
});
...
...
include/spdlog/sinks/android_sink.h
View file @
13fb2550
...
...
@@ -7,7 +7,7 @@
#if defined(__ANDROID__)
#include
<spdlog/sinks/sink.h>
#include
"spdlog/sinks/sink.h"
#include <mutex>
#include <string>
...
...
include/spdlog/sinks/ansicolor_sink.h
View file @
13fb2550
...
...
@@ -5,9 +5,9 @@
#pragma once
#include
<spdlog/sinks/base_sink.h>
#include
<spdlog/common.h>
#include
<spdlog/details/os.h>
#include
"spdlog/sinks/base_sink.h"
#include
"spdlog/common.h"
#include
"spdlog/details/os.h"
#include <string>
#include <map>
...
...
include/spdlog/sinks/dist_sink.h
View file @
13fb2550
...
...
@@ -5,10 +5,10 @@
#pragma once
#include
<spdlog/details/log_msg.h>
#include
<spdlog/details/null_mutex.h>
#include
<spdlog/sinks/base_sink.h>
#include
<spdlog/sinks/sink.h>
#include
"spdlog/details/log_msg.h"
#include
"spdlog/details/null_mutex.h"
#include
"spdlog/sinks/base_sink.h"
#include
"spdlog/sinks/sink.h"
#include <algorithm>
#include <mutex>
...
...
include/spdlog/sinks/msvc_sink.h
View file @
13fb2550
...
...
@@ -7,8 +7,8 @@
#if defined(_MSC_VER)
#include
<spdlog/sinks/base_sink.h>
#include
<spdlog/details/null_mutex.h>
#include
"spdlog/sinks/base_sink.h"
#include
"spdlog/details/null_mutex.h"
#include <WinBase.h>
...
...
include/spdlog/sinks/null_sink.h
View file @
13fb2550
...
...
@@ -5,8 +5,8 @@
#pragma once
#include
<spdlog/sinks/base_sink.h>
#include
<spdlog/details/null_mutex.h>
#include
"spdlog/sinks/base_sink.h"
#include
"spdlog/details/null_mutex.h"
#include <mutex>
...
...
include/spdlog/sinks/ostream_sink.h
View file @
13fb2550
...
...
@@ -5,8 +5,8 @@
#pragma once
#include
<spdlog/details/null_mutex.h>
#include
<spdlog/sinks/base_sink.h>
#include
"spdlog/details/null_mutex.h"
#include
"spdlog/sinks/base_sink.h"
#include <ostream>
#include <mutex>
...
...
include/spdlog/sinks/syslog_sink.h
View file @
13fb2550
...
...
@@ -5,12 +5,12 @@
#pragma once
#include
<spdlog/common.h>
#include
"spdlog/common.h"
#ifdef SPDLOG_ENABLE_SYSLOG
#include
<spdlog/sinks/sink.h>
#include
<spdlog/details/log_msg.h>
#include
"spdlog/sinks/sink.h"
#include
"spdlog/details/log_msg.h"
#include <array>
#include <string>
...
...
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