From Jason Turner

[re.regiter.cnstr]

Diff to HTML by rtfpessoa

tmp/tmpin36_umx/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- #### `regex_iterator` constructors <a id="re.regiter.cnstr">[[re.regiter.cnstr]]</a>
2
 
3
  ``` cpp
4
  regex_iterator();
5
  ```
6
 
@@ -11,9 +11,9 @@ regex_iterator(BidirectionalIterator a, BidirectionalIterator b,
11
  const regex_type& re,
12
  regex_constants::match_flag_type m = regex_constants::match_default);
13
  ```
14
 
15
  *Effects:* Initializes `begin` and `end` to `a` and `b`, respectively,
16
- sets `pregex` to `&re`, sets `flags` to `m`, then calls
17
  `regex_search(begin, end, match, *pregex, flags)`. If this call returns
18
  `false` the constructor sets `*this` to the end-of-sequence iterator.
19
 
 
1
+ #### Constructors <a id="re.regiter.cnstr">[[re.regiter.cnstr]]</a>
2
 
3
  ``` cpp
4
  regex_iterator();
5
  ```
6
 
 
11
  const regex_type& re,
12
  regex_constants::match_flag_type m = regex_constants::match_default);
13
  ```
14
 
15
  *Effects:* Initializes `begin` and `end` to `a` and `b`, respectively,
16
+ sets `pregex` to `addressof(re)`, sets `flags` to `m`, then calls
17
  `regex_search(begin, end, match, *pregex, flags)`. If this call returns
18
  `false` the constructor sets `*this` to the end-of-sequence iterator.
19