Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/standard-library/atomic-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ The result of the bitwise "and" (`&`).

This operator performs a read-modify-write operation to replace the stored value of **`*this`** with a bitwise "and" (`&`) of *`Value`* and the current value that is stored in **`*this`**, within the constraints of the `memory_order_seq_cst` [`memory_order`](atomic-enums.md).

## <a name="op_or_eq"></a> `atomic::operator|;=`
## <a name="op_or_eq"></a> `atomic::operator|=`

Performs a bitwise "or" (`|`) on a specified value and the stored value of **`*this`**. Used only by integral specializations.

Expand Down