You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/standard-library/atomic.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,10 +141,10 @@ In the following list, the functions that do not end in `_explicit` have the sem
141
141
|[atomic_fetch_sub_explicit](../standard-library/atomic-functions.md#atomic_fetch_sub_explicit)|Subtracts a specified value from an existing stored value.|
142
142
|[atomic_fetch_xor](../standard-library/atomic-functions.md#atomic_fetch_xor)|Performs a bitwise `exclusive or` on a specified value and an existing stored value.|
143
143
|[atomic_fetch_xor_explicit](../standard-library/atomic-functions.md#atomic_fetch_xor_explicit)|Performs a bitwise `exclusive or` on a specified value and an existing stored value.|
144
-
|[atomic_flag_clear](../standard-library/atomic-functions.md#atomic_flag_clear)|Sets the flag in an `atomic_flag` object to `false`.|
145
-
|[atomic_flag_clear_explicit](../standard-library/atomic-functions.md#atomic_flag_clear_explicit)|Sets the flag in an `atomic_flag` object to `false`.|
146
-
|[atomic_flag_test_and_set](../standard-library/atomic-functions.md#atomic_flag_test_and_set)|Sets the flag in an `atomic_flag` object to `true`.|
147
-
|[atomic_flag_test_and_set_explicit](../standard-library/atomic-functions.md#atomic_flag_test_and_set_explicit)|Sets the flag in an `atomic_flag` object to `true`.|
144
+
|[atomic_flag_clear](../standard-library/atomic-functions.md#atomic_flag_clear)|Sets the flag in an `atomic_flag` object to **false**.|
145
+
|[atomic_flag_clear_explicit](../standard-library/atomic-functions.md#atomic_flag_clear_explicit)|Sets the flag in an `atomic_flag` object to **false**.|
146
+
|[atomic_flag_test_and_set](../standard-library/atomic-functions.md#atomic_flag_test_and_set)|Sets the flag in an `atomic_flag` object to **true**.|
147
+
|[atomic_flag_test_and_set_explicit](../standard-library/atomic-functions.md#atomic_flag_test_and_set_explicit)|Sets the flag in an `atomic_flag` object to **true**.|
148
148
|[atomic_init](../standard-library/atomic-functions.md#atomic_init)|Sets the stored value in an `atomic` object.|
149
149
|[atomic_is_lock_free](../standard-library/atomic-functions.md#atomic_is_lock_free)|Specifies whether atomic operations on a specified object are lock-free.|
150
150
|[atomic_load](../standard-library/atomic-functions.md#atomic_load)|Atomically retrieves a value.|
Copy file name to clipboardExpand all lines: docs/standard-library/basic-ios-class.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ bool bad() const;
110
110
111
111
### Return Value
112
112
113
-
`true` if `rdstate & badbit` is nonzero; otherwise `false`.
113
+
**true** if `rdstate & badbit` is nonzero; otherwise **false**.
114
114
115
115
For more information on `badbit`, see [ios_base::iostate](../standard-library/ios-base-class.md#iostate).
116
116
@@ -174,7 +174,7 @@ void clear(io_state state);
174
174
The flags you want to set after clearing all flags. Defaults to `goodbit`.
175
175
176
176
*reraise* (optional)
177
-
Specifies whether the exception should be re-raised. Defaults to `false` (will not re-raise the exception).
177
+
Specifies whether the exception should be re-raised. Defaults to **false** (will not re-raise the exception).
178
178
179
179
### Remarks
180
180
@@ -244,11 +244,11 @@ bool eof() const;
244
244
245
245
### Return Value
246
246
247
-
`true` if the end of the stream has been reached, `false` otherwise.
247
+
**true** if the end of the stream has been reached, **false** otherwise.
248
248
249
249
### Remarks
250
250
251
-
The member function returns `true` if [rdstate](#rdstate)`& eofbit` is nonzero. For more information on `eofbit`, see [ios_base::iostate](../standard-library/ios-base-class.md#iostate).
251
+
The member function returns **true** if [rdstate](#rdstate)`& eofbit` is nonzero. For more information on `eofbit`, see [ios_base::iostate](../standard-library/ios-base-class.md#iostate).
252
252
253
253
### Example
254
254
@@ -341,7 +341,7 @@ bool fail() const;
341
341
342
342
### Return Value
343
343
344
-
`true` if [rdstate](#rdstate)`& (badbit|failbit)` is nonzero, otherwise `false`.
344
+
**true** if [rdstate](#rdstate)`& (badbit|failbit)` is nonzero, otherwise **false**.
345
345
346
346
For more information on `failbit`, see [ios_base::iostate](../standard-library/ios-base-class.md#iostate).
347
347
@@ -419,7 +419,7 @@ bool good() const;
419
419
420
420
### Return Value
421
421
422
-
`true` if [rdstate](#rdstate)`== goodbit` (no state flags are set), otherwise, `false`.
422
+
**true** if [rdstate](#rdstate)`== goodbit` (no state flags are set), otherwise, **false**.
423
423
424
424
For more information on `goodbit`, see [ios_base::iostate](../standard-library/ios-base-class.md#iostate).
The operator returns a value convertible to `false` only if `fail()`. The return type is convertible only to **bool**, not to `void *` or other known scalar type.
661
+
The operator returns a value convertible to **false** only if `fail()`. The return type is convertible only to **bool**, not to `void *` or other known scalar type.
0 commit comments