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
1814c31f
Commit
1814c31f
authored
Nov 07, 2014
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed gcc warning about unordered intialization
parent
b599609d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
logger_impl.h
include/spdlog/details/logger_impl.h
+1
-1
logger.h
include/spdlog/logger.h
+1
-1
No files found.
include/spdlog/details/logger_impl.h
View file @
1814c31f
...
...
@@ -42,7 +42,7 @@ inline spdlog::logger::logger(const std::string& logger_name, const It& begin, c
}
inline
spdlog
::
logger
::
logger
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks_list
)
:
logger
(
logger_name
,
sinks_list
.
begin
(),
sinks_list
.
end
())
{}
;
logger
(
logger_name
,
sinks_list
.
begin
(),
sinks_list
.
end
())
{}
...
...
include/spdlog/logger.h
View file @
1814c31f
...
...
@@ -83,8 +83,8 @@ public:
private
:
friend
details
::
line_logger
;
std
::
string
_name
;
formatter_ptr
_formatter
;
std
::
vector
<
sink_ptr
>
_sinks
;
formatter_ptr
_formatter
;
std
::
atomic_int
_level
;
void
_variadic_log
(
details
::
line_logger
&
l
);
template
<
typename
Last
>
...
...
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