File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2958
2958
\effects
2959
2959
\begin {codeblock }
2960
2960
*@\textit {out_stream }@ << value;
2961
- if( delim != 0)
2961
+ if (@ \textit { delim }@ != 0)
2962
2962
*@\textit {out_stream }@ << @\textit {delim }@;
2963
- return ( *this) ;
2963
+ return *this;
2964
2964
\end {codeblock }
2965
2965
\end {itemdescr }
2966
2966
Original file line number Diff line number Diff line change 2511
2511
The phrase `` unless otherwise specified'' is intended to allow
2512
2512
argument-dependent lookup
2513
2513
in cases like that of
2514
- \tcode {ostream_iterator}s:
2514
+ \tcode {ostream_iterator::operator=}~(\ref {ostream.iterator.ops }):
2515
+
2515
2516
\effects
2516
2517
\begin {codeblock }
2517
- *out_stream << value;
2518
- if (delim != 0)
2519
- *out_stream << delim;
2520
- return ( *this) ;
2518
+ *@ \textit { out_stream }@ << value;
2519
+ if (@ \textit { delim }@ != 0)
2520
+ *@ \textit { out_stream }@ << @ \textit { delim }@ ;
2521
+ return *this;
2521
2522
\end {codeblock }
2522
2523
\exitnote
2523
2524
You can’t perform that action at this time.
0 commit comments