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
9f993da4
Commit
9f993da4
authored
Feb 10, 2015
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
default move impl in async_msg
parent
147ce4c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
16 deletions
+6
-16
include/spdlog/details/async_log_helper.h
include/spdlog/details/async_log_helper.h
+6
-16
No files found.
include/spdlog/details/async_log_helper.h
View file @
9f993da4
...
@@ -64,9 +64,14 @@ class async_log_helper
...
@@ -64,9 +64,14 @@ class async_log_helper
async_msg
()
=
default
;
async_msg
()
=
default
;
~
async_msg
()
=
default
;
~
async_msg
()
=
default
;
async_msg
(
async_msg
&&
other
)
=
default
;
async_msg
&
operator
=
(
async_msg
&&
other
)
=
default
;
// never copy or assign. should only be moved..
async_msg
(
const
async_msg
&
)
=
delete
;
async_msg
(
const
async_msg
&
)
=
delete
;
async_msg
&
operator
=
(
async_msg
&
other
)
=
delete
;
async_msg
&
operator
=
(
async_msg
&
other
)
=
delete
;
// construct from log_msg
async_msg
(
const
details
::
log_msg
&
m
)
:
async_msg
(
const
details
::
log_msg
&
m
)
:
logger_name
(
m
.
logger_name
),
logger_name
(
m
.
logger_name
),
level
(
m
.
level
),
level
(
m
.
level
),
...
@@ -74,23 +79,8 @@ class async_log_helper
...
@@ -74,23 +79,8 @@ class async_log_helper
txt
(
m
.
raw
.
data
(),
m
.
raw
.
size
())
txt
(
m
.
raw
.
data
(),
m
.
raw
.
size
())
{}
{}
async_msg
(
async_msg
&&
other
)
:
logger_name
(
std
::
move
(
other
.
logger_name
)),
level
(
std
::
move
(
other
.
level
)),
time
(
std
::
move
(
other
.
time
)),
txt
(
std
::
move
(
other
.
txt
))
{}
async_msg
&
operator
=
(
async_msg
&&
other
)
{
logger_name
=
std
::
move
(
other
.
logger_name
);
level
=
other
.
level
;
time
=
std
::
move
(
other
.
time
);
txt
=
std
::
move
(
other
.
txt
);
return
*
this
;
}
// copy into log_msg
void
fill_log_msg
(
log_msg
&
msg
)
void
fill_log_msg
(
log_msg
&
msg
)
{
{
msg
.
clear
();
msg
.
clear
();
...
...
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