Skip to content

Commit 41f0623

Browse files
[istreambuf.iterator] Exposition-only style for sbuf_
1 parent 9a6fffb commit 41f0623

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
@@ -6920,7 +6920,7 @@
69206920
friend bool operator==(const istreambuf_iterator& i, default_sentinel_t s);
69216921

69226922
private:
6923-
streambuf_type* sbuf_; // \expos
6923+
streambuf_type* @\exposid{sbuf_}@; // \expos
69246924
};
69256925
}
69266926
\end{codeblock}
@@ -6961,7 +6961,7 @@
69616961
\pnum
69626962
For each \tcode{istreambuf_iterator} constructor in this subclause,
69636963
an end-of-stream iterator is constructed if and only if
6964-
the exposition-only member \tcode{sbuf_} is initialized with a null pointer value.
6964+
the exposition-only member \exposid{sbuf_} is initialized with a null pointer value.
69656965

69666966

69676967
\indexlibraryctor{istreambuf_iterator}%
@@ -6973,7 +6973,7 @@
69736973
\begin{itemdescr}
69746974
\pnum
69756975
\effects
6976-
Initializes \tcode{sbuf_} with \keyword{nullptr}.
6976+
Initializes \exposid{sbuf_} with \keyword{nullptr}.
69776977
\end{itemdescr}
69786978

69796979

@@ -6985,7 +6985,7 @@
69856985
\begin{itemdescr}
69866986
\pnum
69876987
\effects
6988-
Initializes \tcode{sbuf_} with \tcode{s.rdbuf()}.
6988+
Initializes \exposid{sbuf_} with \tcode{s.rdbuf()}.
69896989
\end{itemdescr}
69906990

69916991

@@ -6997,7 +6997,7 @@
69976997
\begin{itemdescr}
69986998
\pnum
69996999
\effects
7000-
Initializes \tcode{sbuf_} with \tcode{s}.
7000+
Initializes \exposid{sbuf_} with \tcode{s}.
70017001
\end{itemdescr}
70027002

70037003

@@ -7009,7 +7009,7 @@
70097009
\begin{itemdescr}
70107010
\pnum
70117011
\effects
7012-
Initializes \tcode{sbuf_} with \tcode{p.sbuf_}.
7012+
Initializes \exposid{sbuf_} with \tcode{p.sbuf_}.
70137013
\end{itemdescr}
70147014

70157015
\rSec3[istreambuf.iterator.ops]{Operations}
@@ -7025,7 +7025,7 @@
70257025
The character obtained via the
70267026
\tcode{streambuf}
70277027
member
7028-
\tcode{sbuf_->sgetc()}.
7028+
\tcode{\exposid{sbuf_}->sgetc()}.
70297029
\end{itemdescr}
70307030

70317031
\indexlibrarymember{operator++}{istreambuf_iterator}%
@@ -7036,7 +7036,7 @@
70367036
\begin{itemdescr}
70377037
\pnum
70387038
\effects
7039-
As if by \tcode{sbuf_->sbumpc()}.
7039+
As if by \tcode{\exposid{sbuf_}->sbumpc()}.
70407040

70417041
\pnum
70427042
\returns
@@ -7051,7 +7051,7 @@
70517051
\begin{itemdescr}
70527052
\pnum
70537053
\returns
7054-
\tcode{\exposid{proxy}(sbuf_->sbumpc(), sbuf_)}.
7054+
\tcode{\exposid{proxy}(\exposid{sbuf_}->sbumpc(), \exposid{sbuf_})}.
70557055
\end{itemdescr}
70567056

70577057
\indexlibrarymember{equal}{istreambuf_iterator}%

0 commit comments

Comments
 (0)