Skip to content

Commit 2648392

Browse files
timsong-cpptkoeppe
authored andcommitted
[istreambuf.iterator.proxy] correct title and remove default template argument (#2078)
This is a class, not a class template. Also, the default template argument is 1) redundant and 2) ill-formed for violating [temp.param]p12.
1 parent e6794e6 commit 2648392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/iterators.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2985,12 +2985,12 @@
29852985
}
29862986
\end{codeblock}
29872987

2988-
\rSec3[istreambuf.iterator.proxy]{Class template \tcode{istreambuf_iterator::proxy}}
2988+
\rSec3[istreambuf.iterator.proxy]{Class \tcode{istreambuf_iterator::proxy}}
29892989

29902990
\indexlibrary{\idxcode{proxy}!\idxcode{istreambuf_iterator}}%
29912991
\begin{codeblock}
29922992
namespace std {
2993-
template<class charT, class traits = char_traits<charT>>
2993+
template<class charT, class traits>
29942994
class istreambuf_iterator<charT, traits>::proxy { // \expos
29952995
charT keep_;
29962996
basic_streambuf<charT,traits>* sbuf_;

0 commit comments

Comments
 (0)