Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip Trettner
typed-geometry
Commits
a6c6371f
Commit
a6c6371f
authored
Dec 19, 2020
by
Philip Trettner
Browse files
fixed warning
parent
216565a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/typed-geometry/functions/std/io.hh
View file @
a6c6371f
...
...
@@ -80,8 +80,8 @@ std::basic_ostream<CharT, StreamTraits>& operator<<(std::basic_ostream<CharT, St
auto
u
=
val
;
while
(
u
>
0
)
{
auto
const
n
=
u64
(
u
%
10
);
u
/=
10
;
auto
const
n
=
u64
(
u
%
10
u
);
u
/=
10
u
;
*
(
--
begin
)
=
CharT
(
'0'
+
n
);
}
if
(
begin
+
1
==
end
)
...
...
Write
Preview
Supports
Markdown
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