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
b4cb1feb
Commit
b4cb1feb
authored
Nov 02, 2016
by
Chen Hayat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed external library changes
parent
0c16b9ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/spdlog/details/async_log_helper.h
include/spdlog/details/async_log_helper.h
+1
-1
include/spdlog/fmt/bundled/format.h
include/spdlog/fmt/bundled/format.h
+2
-2
No files found.
include/spdlog/details/async_log_helper.h
View file @
b4cb1feb
...
@@ -82,7 +82,7 @@ async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
...
@@ -82,7 +82,7 @@ async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
// never copy or assign. should only be moved..
// never copy or assign. should only be moved..
async_msg
(
const
async_msg
&
)
=
delete
;
async_msg
(
const
async_msg
&
)
=
delete
;
async_msg
&
operator
=
(
const
async_msg
&
other
)
=
delete
;
async_msg
&
operator
=
(
async_msg
&
other
)
=
delete
;
// construct from log_msg
// construct from log_msg
async_msg
(
const
details
::
log_msg
&
m
)
:
async_msg
(
const
details
::
log_msg
&
m
)
:
...
...
include/spdlog/fmt/bundled/format.h
View file @
b4cb1feb
...
@@ -1098,7 +1098,7 @@ inline void format_decimal(Char *buffer, UInt value, unsigned num_digits,
...
@@ -1098,7 +1098,7 @@ inline void format_decimal(Char *buffer, UInt value, unsigned num_digits,
template
<
typename
UInt
,
typename
Char
>
template
<
typename
UInt
,
typename
Char
>
inline
void
format_decimal
(
Char
*
buffer
,
UInt
value
,
unsigned
num_digits
)
inline
void
format_decimal
(
Char
*
buffer
,
UInt
value
,
unsigned
num_digits
)
{
{
format_decimal
(
buffer
,
value
,
num_digits
,
NoThousandsSep
());
return
format_decimal
(
buffer
,
value
,
num_digits
,
NoThousandsSep
());
}
}
#ifndef _WIN32
#ifndef _WIN32
...
@@ -2256,7 +2256,7 @@ public:
...
@@ -2256,7 +2256,7 @@ public:
void
visit_bool
(
bool
value
)
void
visit_bool
(
bool
value
)
{
{
if
(
spec_
.
type_
)
if
(
spec_
.
type_
)
visit_any_int
(
value
);
return
visit_any_int
(
value
);
write
(
value
);
write
(
value
);
}
}
...
...
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