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
ad3c7855
Commit
ad3c7855
authored
Aug 27, 2019
by
Bruce Mitchener
Committed by
Victor Zverovich
Aug 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos.
parent
7512a55a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ChangeLog.rst
ChangeLog.rst
+1
-1
include/fmt/chrono.h
include/fmt/chrono.h
+1
-1
No files found.
ChangeLog.rst
View file @
ad3c7855
...
...
@@ -298,7 +298,7 @@
`#1222 <https://github.com/fmtlib/fmt/issues/1222>`_).
Thanks `@alabuzhev (Alex Alabuzhev) <https://github.com/alabuzhev>`_.
* Fixed bugs discovered by fuzzing or during fuzzing integation
* Fixed bugs discovered by fuzzing or during fuzzing integ
r
ation
(`#1124 <https://github.com/fmtlib/fmt/issues/1124>`_,
`#1127 <https://github.com/fmtlib/fmt/issues/1127>`_,
`#1132 <https://github.com/fmtlib/fmt/issues/1132>`_,
...
...
include/fmt/chrono.h
View file @
ad3c7855
...
...
@@ -403,7 +403,7 @@ inline bool isfinite(T value) {
return
std
::
isfinite
(
value
);
}
// Convers value to int and checks that it's in the range [0, upper).
// Conver
t
s value to int and checks that it's in the range [0, upper).
template
<
typename
T
,
FMT_ENABLE_IF
(
std
::
is_integral
<
T
>
::
value
)
>
inline
int
to_nonnegative_int
(
T
value
,
int
upper
)
{
FMT_ASSERT
(
value
>=
0
&&
value
<=
upper
,
"invalid 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