Skip to content

Commit 47c537a

Browse files
committed
Merge branch 'master' of https://github.com/cplusplus/draft
2 parents b0bc378 + 119b98d commit 47c537a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

source/iostreams.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8913,6 +8913,7 @@
89138913

89148914
\pnum
89158915
\returns
8916+
As specified above, or
89168917
\tcode{traits::eof()}
89178918
to indicate failure.
89188919

source/iterators.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@
745745
template <class Iterator1, class Iterator2>
746746
constexpr auto operator-(
747747
const reverse_iterator<Iterator1>& x,
748-
const reverse_iterator<Iterator2>& y) ->decltype(y.base() - x.base());
748+
const reverse_iterator<Iterator2>& y) -> decltype(y.base() - x.base());
749749
template <class Iterator>
750750
constexpr reverse_iterator<Iterator>
751751
operator+(

source/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6182,7 +6182,7 @@
61826182

61836183
\pnum
61846184
The class template
6185-
\tcode{bitset<N>}%
6185+
\tcode{bitset<N>}
61866186
describes an object that can store a sequence consisting of a fixed number of
61876187
bits, \tcode{N}.
61886188

0 commit comments

Comments
 (0)