Skip to content

Commit c24c2df

Browse files
[istreambuf.iterator] Exposition-only style for sbuf_
1 parent 52f6cc0 commit c24c2df

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/iterators.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6922,7 +6922,7 @@
69226922
friend bool operator==(const istreambuf_iterator& i, default_sentinel_t s);
69236923

69246924
private:
6925-
streambuf_type* sbuf_; // \expos
6925+
streambuf_type* @\exposid{sbuf_}@; // \expos
69266926
};
69276927
}
69286928
\end{codeblock}
@@ -6963,7 +6963,7 @@
69636963
\pnum
69646964
For each \tcode{istreambuf_iterator} constructor in this subclause,
69656965
an end-of-stream iterator is constructed if and only if
6966-
the exposition-only member \tcode{sbuf_} is initialized with a null pointer value.
6966+
the exposition-only member \exposid{sbuf_} is initialized with a null pointer value.
69676967

69686968

69696969
\indexlibraryctor{istreambuf_iterator}%
@@ -6975,7 +6975,7 @@
69756975
\begin{itemdescr}
69766976
\pnum
69776977
\effects
6978-
Initializes \tcode{sbuf_} with \keyword{nullptr}.
6978+
Initializes \exposid{sbuf_} with \keyword{nullptr}.
69796979
\end{itemdescr}
69806980

69816981

@@ -6987,7 +6987,7 @@
69876987
\begin{itemdescr}
69886988
\pnum
69896989
\effects
6990-
Initializes \tcode{sbuf_} with \tcode{s.rdbuf()}.
6990+
Initializes \exposid{sbuf_} with \tcode{s.rdbuf()}.
69916991
\end{itemdescr}
69926992

69936993

@@ -6999,7 +6999,7 @@
69996999
\begin{itemdescr}
70007000
\pnum
70017001
\effects
7002-
Initializes \tcode{sbuf_} with \tcode{s}.
7002+
Initializes \exposid{sbuf_} with \tcode{s}.
70037003
\end{itemdescr}
70047004

70057005

@@ -7011,7 +7011,7 @@
70117011
\begin{itemdescr}
70127012
\pnum
70137013
\effects
7014-
Initializes \tcode{sbuf_} with \tcode{p.sbuf_}.
7014+
Initializes \exposid{sbuf_} with \tcode{p.sbuf_}.
70157015
\end{itemdescr}
70167016

70177017
\rSec3[istreambuf.iterator.ops]{Operations}
@@ -7027,7 +7027,7 @@
70277027
The character obtained via the
70287028
\tcode{streambuf}
70297029
member
7030-
\tcode{sbuf_->sgetc()}.
7030+
\tcode{\exposid{sbuf_}->sgetc()}.
70317031
\end{itemdescr}
70327032

70337033
\indexlibrarymember{operator++}{istreambuf_iterator}%
@@ -7038,7 +7038,7 @@
70387038
\begin{itemdescr}
70397039
\pnum
70407040
\effects
7041-
As if by \tcode{sbuf_->sbumpc()}.
7041+
As if by \tcode{\exposid{sbuf_}->sbumpc()}.
70427042

70437043
\pnum
70447044
\returns
@@ -7053,7 +7053,7 @@
70537053
\begin{itemdescr}
70547054
\pnum
70557055
\returns
7056-
\tcode{\exposid{proxy}(sbuf_->sbumpc(), sbuf_)}.
7056+
\tcode{\exposid{proxy}(\exposid{sbuf_}->sbumpc(), \exposid{sbuf_})}.
70577057
\end{itemdescr}
70587058

70597059
\indexlibrarymember{equal}{istreambuf_iterator}%

0 commit comments

Comments
 (0)