Skip to content

Commit 738e80f

Browse files
jwakelytkoeppe
authored andcommitted
[istream.formatted.arithmetic] remove unnecessary whitespace in codeblocks
1 parent 5670e07 commit 738e80f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/iostreams.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4766,7 +4766,7 @@
47664766
} else if (numeric_limits<short>::max() < lval) {
47674767
state |= ios_base::failbit;
47684768
val = numeric_limits<short>::max();
4769-
} else
4769+
} else
47704770
val = static_cast<short>(lval);
47714771
\end{codeblock}
47724772
\end{itemdescr}
@@ -4790,7 +4790,7 @@
47904790
} else if (numeric_limits<int>::max() < lval) {
47914791
state |= ios_base::failbit;
47924792
val = numeric_limits<int>::max();
4793-
} else
4793+
} else
47944794
val = static_cast<int>(lval);
47954795
\end{codeblock}
47964796
\end{itemdescr}

0 commit comments

Comments
 (0)