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
7ded05f3
Commit
7ded05f3
authored
Nov 21, 2014
by
gabi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log_msg faster move
parent
e2cd9285
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
29 deletions
+12
-29
log_msg.h
include/spdlog/details/log_msg.h
+8
-22
stack_buf.h
include/spdlog/details/stack_buf.h
+4
-4
logger.h
include/spdlog/logger.h
+0
-3
No files found.
include/spdlog/details/log_msg.h
View file @
7ded05f3
...
...
@@ -50,28 +50,16 @@ struct log_msg
raw
(
other
.
raw
),
formatted
(
other
.
formatted
)
{}
log_msg
(
log_msg
&&
other
)
{
swap
(
*
this
,
other
);
}
void
swap
(
log_msg
&
l
,
log_msg
&
r
)
{
using
std
::
swap
;
swap
(
l
.
logger_name
,
r
.
logger_name
);
swap
(
l
.
level
,
r
.
level
);
swap
(
l
.
time
,
r
.
time
);
swap
(
l
.
tm_time
,
r
.
tm_time
);
swap
(
l
.
raw
,
r
.
raw
);
swap
(
l
.
formatted
,
r
.
formatted
);
}
log_msg
(
log_msg
&&
other
)
:
logger_name
(
std
::
move
(
other
.
logger_name
)),
level
(
other
.
level
),
time
(
std
::
move
(
other
.
time
)),
tm_time
(
other
.
tm_time
),
raw
(
std
::
move
(
other
.
raw
)),
formatted
(
std
::
move
(
other
.
formatted
))
{}
log_msg
&
operator
=
(
log_msg
&&
other
)
=
delete
;
log_msg
&
operator
=
(
log_msg
other
)
{
swap
(
*
this
,
other
);
return
*
this
;
}
void
clear
()
...
...
@@ -86,8 +74,6 @@ struct log_msg
std
::
tm
tm_time
;
fast_oss
raw
;
fast_oss
formatted
;
};
}
}
include/spdlog/details/stack_buf.h
View file @
7ded05f3
...
...
@@ -42,10 +42,10 @@ public:
static
const
unsigned
short
stack_size
=
STACK_SIZE
;
stack_buf
()
:
_v
(),
_stack_size
(
0
)
{}
~
stack_buf
()
=
default
;
stack_buf
(
const
stack_buf
&
other
)
:
stack_buf
(
other
,
delegate_copy
_move
{})
stack_buf
(
const
stack_buf
&
other
)
:
stack_buf
(
other
,
delegate_copy_or
_move
{})
{}
stack_buf
(
stack_buf
&&
other
)
:
stack_buf
(
other
,
delegate_copy
_move
{})
stack_buf
(
stack_buf
&&
other
)
:
stack_buf
(
other
,
delegate_copy_or
_move
{})
{
other
.
clear
();
}
...
...
@@ -109,9 +109,9 @@ public:
}
private
:
struct
delegate_copy_move
{};
struct
delegate_copy_
or_
move
{};
template
<
class
T1
>
stack_buf
(
T1
&&
other
,
delegate_copy_move
)
stack_buf
(
T1
&&
other
,
delegate_copy_
or_
move
)
{
_stack_size
=
other
.
_stack_size
;
if
(
other
.
vector_used
())
...
...
include/spdlog/logger.h
View file @
7ded05f3
...
...
@@ -96,9 +96,6 @@ private:
void
_variadic_log
(
details
::
line_logger
&
l
,
const
First
&
first
,
const
Rest
&
...
rest
);
void
_log_msg
(
details
::
log_msg
&
msg
);
};
}
#include "./details/logger_impl.h"
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