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
c000a616
Commit
c000a616
authored
Jun 03, 2019
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused member from log_msg
parent
cb6208a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
log_msg.h
include/spdlog/details/log_msg.h
+0
-1
thread_pool.h
include/spdlog/details/thread_pool.h
+0
-4
No files found.
include/spdlog/details/log_msg.h
View file @
c000a616
...
...
@@ -18,7 +18,6 @@ struct log_msg
level
::
level_enum
level
{
level
::
off
};
log_clock
::
time_point
time
;
size_t
thread_id
{
0
};
size_t
msg_id
{
0
};
// wrapping the formatted text with color (updated by pattern_formatter).
mutable
size_t
color_range_start
{
0
};
...
...
include/spdlog/details/thread_pool.h
View file @
c000a616
...
...
@@ -36,7 +36,6 @@ struct async_msg
size_t
thread_id
;
fmt
::
basic_memory_buffer
<
char
,
176
>
raw
;
size_t
msg_id
;
source_loc
source
;
async_logger_ptr
worker_ptr
;
...
...
@@ -81,7 +80,6 @@ struct async_msg
,
level
(
m
.
level
)
,
time
(
m
.
time
)
,
thread_id
(
m
.
thread_id
)
,
msg_id
(
m
.
msg_id
)
,
source
(
m
.
source
)
,
worker_ptr
(
std
::
move
(
worker
))
{
...
...
@@ -93,7 +91,6 @@ struct async_msg
,
level
(
level
::
off
)
,
time
()
,
thread_id
(
0
)
,
msg_id
(
0
)
,
source
()
,
worker_ptr
(
std
::
move
(
worker
))
{}
...
...
@@ -108,7 +105,6 @@ struct async_msg
log_msg
msg
(
&
worker_ptr
->
name
(),
level
,
string_view_t
(
raw
.
data
(),
raw
.
size
()));
msg
.
time
=
time
;
msg
.
thread_id
=
thread_id
;
msg
.
msg_id
=
msg_id
;
msg
.
source
=
source
;
msg
.
color_range_start
=
0
;
msg
.
color_range_end
=
0
;
...
...
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