Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
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
fmt
Commits
5c045049
Commit
5c045049
authored
Oct 28, 2020
by
OptoCloud
Committed by
Victor Zverovich
Nov 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed [-Wsign-conversion] warning in GCC
parent
556a1cfb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/fmt/format-inl.h
include/fmt/format-inl.h
+1
-1
No files found.
include/fmt/format-inl.h
View file @
5c045049
...
...
@@ -1901,7 +1901,7 @@ template <> struct cache_accessor<double> {
uint64_t
pow5
=
data
::
powers_of_5_64
[
offset
];
uint128_wrapper
recovered_cache
=
umul128
(
base_cache
.
high
(),
pow5
);
uint128_wrapper
middle_low
=
umul128
(
base_cache
.
low
()
-
(
kb
<
0
?
1
:
0
),
pow5
);
umul128
(
base_cache
.
low
()
-
(
kb
<
0
?
1
u
:
0u
),
pow5
);
recovered_cache
+=
middle_low
.
high
();
...
...
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