From Jason Turner

[std.ios.manip]

Diff to HTML by rtfpessoa

tmp/tmptleiuyi7/{from.md → to.md} RENAMED
@@ -207,23 +207,23 @@ ios_base& defaultfloat(ios_base& str);
207
  *Returns:* `str`.
208
 
209
  #### Error reporting <a id="error.reporting">[[error.reporting]]</a>
210
 
211
  ``` cpp
212
- error_code make_error_code(io_errc e);
213
  ```
214
 
215
  *Returns:* `error_code(static_cast<int>(e), iostream_category())`.
216
 
217
  ``` cpp
218
- error_condition make_error_condition(io_errc e);
219
  ```
220
 
221
  *Returns:* `error_condition(static_cast<int>(e), iostream_category())`.
222
 
223
  ``` cpp
224
- const error_category& iostream_category();
225
  ```
226
 
227
  *Returns:* A reference to an object of a type derived from class
228
  `error_category`.
229
 
 
207
  *Returns:* `str`.
208
 
209
  #### Error reporting <a id="error.reporting">[[error.reporting]]</a>
210
 
211
  ``` cpp
212
+ error_code make_error_code(io_errc e) noexcept;
213
  ```
214
 
215
  *Returns:* `error_code(static_cast<int>(e), iostream_category())`.
216
 
217
  ``` cpp
218
+ error_condition make_error_condition(io_errc e) noexcept;
219
  ```
220
 
221
  *Returns:* `error_condition(static_cast<int>(e), iostream_category())`.
222
 
223
  ``` cpp
224
+ const error_category& iostream_category() noexcept;
225
  ```
226
 
227
  *Returns:* A reference to an object of a type derived from class
228
  `error_category`.
229