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