-
Notifications
You must be signed in to change notification settings - Fork 7
shared_memory operator=
Alairion edited this page May 8, 2021
·
2 revisions
nes::shared_memory::operator=
(1) shared_memory& operator=(const shared_memory&) = delete;
(2) shared_memory& operator=(shared_memory&& other) noexcept;
- Deleted copy-assignment operator.
- Move-assignment operator. Replace the content with those of other. After this call, other does no longer represents any shared memory object.
Name | Description |
---|---|
other |
An instance of nes::shared_memory
|
- Deleted.
*this
- Deleted.
- Does not throw.