From Jason Turner

[std.manip]

Diff to HTML by rtfpessoa

tmp/tmpn5_v0mh3/{from.md → to.md} RENAMED
@@ -11,11 +11,11 @@ unspecified resetiosflags(ios_base::fmtflags mask);
11
  *Returns:* An object of unspecified type such that if `out` is an object
12
  of type `basic_ostream<charT, traits>` then the expression
13
  `out << resetiosflags(mask)` behaves as if it called `f(out, mask)`, or
14
  if `in` is an object of type `basic_istream<charT, traits>` then the
15
  expression `in >> resetiosflags(mask)` behaves as if it called
16
- `f(in, mask)`, where the function `f` is defined as:[^37]
17
 
18
  ``` cpp
19
  void f(ios_base& str, ios_base::fmtflags mask) {
20
  // reset specified flags
21
  str.setf(ios_base::fmtflags(0), mask);
 
11
  *Returns:* An object of unspecified type such that if `out` is an object
12
  of type `basic_ostream<charT, traits>` then the expression
13
  `out << resetiosflags(mask)` behaves as if it called `f(out, mask)`, or
14
  if `in` is an object of type `basic_istream<charT, traits>` then the
15
  expression `in >> resetiosflags(mask)` behaves as if it called
16
+ `f(in, mask)`, where the function `f` is defined as:[^38]
17
 
18
  ``` cpp
19
  void f(ios_base& str, ios_base::fmtflags mask) {
20
  // reset specified flags
21
  str.setf(ios_base::fmtflags(0), mask);