From Jason Turner

[ostream.iterator.ops]

Diff to HTML by rtfpessoa

tmp/tmpmnd61nu7/{from.md → to.md} RENAMED
@@ -1,16 +1,16 @@
1
- #### `ostream_iterator` operations <a id="ostream.iterator.ops">[[ostream.iterator.ops]]</a>
2
 
3
  ``` cpp
4
  ostream_iterator& operator=(const T& value);
5
  ```
6
 
7
  *Effects:* As if by:
8
 
9
  ``` cpp
10
  *out_stream << value;
11
- if (delim != 0)
12
  *out_stream << delim;
13
  return *this;
14
  ```
15
 
16
  ``` cpp
 
1
+ #### Operations <a id="ostream.iterator.ops">[[ostream.iterator.ops]]</a>
2
 
3
  ``` cpp
4
  ostream_iterator& operator=(const T& value);
5
  ```
6
 
7
  *Effects:* As if by:
8
 
9
  ``` cpp
10
  *out_stream << value;
11
+ if (delim)
12
  *out_stream << delim;
13
  return *this;
14
  ```
15
 
16
  ``` cpp