forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable move ctor/operator for CKeyHolder #3162
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Also fixes these warnings: ``` In file included from dsnotificationinterface.cpp:12: In file included from ./privatesend/privatesend-client.h:8: ./privatesend/privatesend-util.h:18:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] CKeyHolder(CKeyHolder&&) = default; ^ ./privatesend/privatesend-util.h:13:17: note: move constructor of 'CKeyHolder' is implicitly deleted because field 'reserveKey' has a deleted move constructor CReserveKey reserveKey; ^ ./wallet/wallet.h:1282:5: note: 'CReserveKey' has been explicitly marked deleted here CReserveKey(const CReserveKey&) = delete; ^ In file included from dsnotificationinterface.cpp:12: In file included from ./privatesend/privatesend-client.h:8: ./privatesend/privatesend-util.h:19:17: warning: explicitly defaulted move assignment operator is implicitly deleted [-Wdefaulted-function-deleted] CKeyHolder& operator=(CKeyHolder&&) = default; ^ ./privatesend/privatesend-util.h:13:17: note: move assignment operator of 'CKeyHolder' is implicitly deleted because field 'reserveKey' has a deleted move assignment operator CReserveKey reserveKey; ^ ./wallet/wallet.h:1283:18: note: 'operator=' has been explicitly marked deleted here CReserveKey& operator=(const CReserveKey&) = delete; ^ 2 warnings generated. ```
…ptr and not the object itself that we are moving
nmarley
approved these changes
Oct 17, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
GitLab build error seems unrelated to code changes
codablock
approved these changes
Oct 19, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
barrystyle
pushed a commit
to PACGlobalOfficial/PAC
that referenced
this pull request
Jan 22, 2020
* Disable move ctor/operator for CKeyHolder Also fixes these warnings: ``` In file included from dsnotificationinterface.cpp:12: In file included from ./privatesend/privatesend-client.h:8: ./privatesend/privatesend-util.h:18:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] CKeyHolder(CKeyHolder&&) = default; ^ ./privatesend/privatesend-util.h:13:17: note: move constructor of 'CKeyHolder' is implicitly deleted because field 'reserveKey' has a deleted move constructor CReserveKey reserveKey; ^ ./wallet/wallet.h:1282:5: note: 'CReserveKey' has been explicitly marked deleted here CReserveKey(const CReserveKey&) = delete; ^ In file included from dsnotificationinterface.cpp:12: In file included from ./privatesend/privatesend-client.h:8: ./privatesend/privatesend-util.h:19:17: warning: explicitly defaulted move assignment operator is implicitly deleted [-Wdefaulted-function-deleted] CKeyHolder& operator=(CKeyHolder&&) = default; ^ ./privatesend/privatesend-util.h:13:17: note: move assignment operator of 'CKeyHolder' is implicitly deleted because field 'reserveKey' has a deleted move assignment operator CReserveKey reserveKey; ^ ./wallet/wallet.h:1283:18: note: 'operator=' has been explicitly marked deleted here CReserveKey& operator=(const CReserveKey&) = delete; ^ 2 warnings generated. ``` * Slightly refactor `CKeyHolderStorage::AddKey()` to clarify that it's ptr and not the object itself that we are moving
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The first commit fixes these warnings:
The second one is just a simple refactoring to use better names.