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
14a071c4
Commit
14a071c4
authored
Nov 19, 2018
by
Daniel Chabrowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix osx build
parent
e601ebe1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
13 deletions
+6
-13
include/spdlog/details/fmt_helper.h
include/spdlog/details/fmt_helper.h
+5
-11
include/spdlog/details/pattern_formatter.h
include/spdlog/details/pattern_formatter.h
+1
-2
No files found.
include/spdlog/details/fmt_helper.h
View file @
14a071c4
...
...
@@ -42,7 +42,6 @@ inline void append_int(T n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
dest
.
append
(
i
.
data
(),
i
.
data
()
+
i
.
size
());
}
template
<
size_t
Buffer_Size
>
inline
void
pad2
(
int
n
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size
>
&
dest
)
{
...
...
@@ -60,23 +59,21 @@ inline void pad2(int n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
dest
.
push_back
(
'0'
);
dest
.
push_back
(
static_cast
<
char
>
(
'0'
+
n
));
}
else
// negatives (unlikely, but just in case, let fmt deal with it)
else
// negatives (unlikely, but just in case, let fmt deal with it)
{
fmt
::
format_to
(
dest
,
"{:02}"
,
n
);
}
}
template
<
typename
T
,
size_t
Buffer_Size
>
inline
void
pad_uint
(
T
n
,
unsigned
int
width
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size
>
&
dest
)
{
static_assert
(
std
::
is_unsigned
<
T
>::
value
,
"append_uint must get unsigned T"
);
auto
digits
=
fmt
::
internal
::
count_digits
(
n
);
if
(
width
>
digits
)
auto
digits
=
fmt
::
internal
::
count_digits
(
static_cast
<
uint64_t
>
(
n
)
);
if
(
width
>
digits
)
{
const
char
*
zeroes
=
"0000000000000000000"
;
dest
.
append
(
zeroes
,
zeroes
+
width
-
digits
);
const
char
*
zeroes
=
"0000000000000000000"
;
dest
.
append
(
zeroes
,
zeroes
+
width
-
digits
);
}
append_int
(
n
,
dest
);
}
...
...
@@ -87,7 +84,6 @@ inline void pad3(T n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
pad_uint
(
n
,
3
,
dest
);
}
template
<
typename
T
,
size_t
Buffer_Size
>
inline
void
pad6
(
T
n
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size
>
&
dest
)
{
...
...
@@ -100,8 +96,6 @@ inline void pad9(T n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
pad_uint
(
n
,
9
,
dest
);
}
// return fraction of a second of the given time_point.
// e.g.
// fraction<std::milliseconds>(tp) -> will return the millis part of the second
...
...
include/spdlog/details/pattern_formatter.h
View file @
14a071c4
...
...
@@ -487,7 +487,6 @@ public:
auto
ns
=
fmt_helper
::
time_fraction
<
std
::
chrono
::
nanoseconds
>
(
msg
.
time
);
fmt_helper
::
pad9
(
static_cast
<
size_t
>
(
ns
.
count
()),
dest
);
}
};
...
...
@@ -653,7 +652,7 @@ public:
void
format
(
const
details
::
log_msg
&
msg
,
const
std
::
tm
&
,
fmt
::
memory_buffer
&
dest
)
override
{
const
size_t
field_size
=
fmt
::
internal
::
count_digits
(
msg
.
thread_id
);
const
auto
field_size
=
fmt
::
internal
::
count_digits
(
static_cast
<
uint64_t
>
(
msg
.
thread_id
)
);
scoped_pad
p
(
field_size
,
padinfo_
,
dest
);
fmt_helper
::
append_int
(
msg
.
thread_id
,
dest
);
}
...
...
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