Skip to content

Commit 3eae0d2

Browse files
[istreambuf.iterator] Exposition-only style for sbuf_
1 parent 7030eaf commit 3eae0d2

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

69366936
private:
6937-
streambuf_type* sbuf_; // \expos
6937+
streambuf_type* @\exposid{sbuf_}@; // \expos
69386938
};
69396939
}
69406940
\end{codeblock}
@@ -6975,7 +6975,7 @@
69756975
\pnum
69766976
For each \tcode{istreambuf_iterator} constructor in this subclause,
69776977
an end-of-stream iterator is constructed if and only if
6978-
the exposition-only member \tcode{sbuf_} is initialized with a null pointer value.
6978+
the exposition-only member \exposid{sbuf_} is initialized with a null pointer value.
69796979

69806980

69816981
\indexlibraryctor{istreambuf_iterator}%
@@ -6987,7 +6987,7 @@
69876987
\begin{itemdescr}
69886988
\pnum
69896989
\effects
6990-
Initializes \tcode{sbuf_} with \keyword{nullptr}.
6990+
Initializes \exposid{sbuf_} with \keyword{nullptr}.
69916991
\end{itemdescr}
69926992

69936993

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

70057005

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

70177017

@@ -7023,7 +7023,7 @@
70237023
\begin{itemdescr}
70247024
\pnum
70257025
\effects
7026-
Initializes \tcode{sbuf_} with \tcode{p.sbuf_}.
7026+
Initializes \exposid{sbuf_} with \tcode{p.sbuf_}.
70277027
\end{itemdescr}
70287028

70297029
\rSec3[istreambuf.iterator.ops]{Operations}
@@ -7039,7 +7039,7 @@
70397039
The character obtained via the
70407040
\tcode{streambuf}
70417041
member
7042-
\tcode{sbuf_->sgetc()}.
7042+
\tcode{\exposid{sbuf_}->sgetc()}.
70437043
\end{itemdescr}
70447044

70457045
\indexlibrarymember{operator++}{istreambuf_iterator}%
@@ -7050,7 +7050,7 @@
70507050
\begin{itemdescr}
70517051
\pnum
70527052
\effects
7053-
As if by \tcode{sbuf_->sbumpc()}.
7053+
As if by \tcode{\exposid{sbuf_}->sbumpc()}.
70547054

70557055
\pnum
70567056
\returns
@@ -7065,7 +7065,7 @@
70657065
\begin{itemdescr}
70667066
\pnum
70677067
\returns
7068-
\tcode{\exposid{proxy}(sbuf_->sbumpc(), sbuf_)}.
7068+
\tcode{\exposid{proxy}(\exposid{sbuf_}->sbumpc(), \exposid{sbuf_})}.
70697069
\end{itemdescr}
70707070

70717071
\indexlibrarymember{equal}{istreambuf_iterator}%

0 commit comments

Comments
 (0)