mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 22:18:54 +01:00
Merge bitcoin/bitcoin#25872: Fix issues when calling std::move(const&)
fa875349e2Fix iwyu (MacroFake)faad673716Fix issues when calling std::move(const&) (MacroFake) Pull request description: Passing a symbol to `std::move` that is marked `const` is a no-op, which can be fixed in two ways: * Remove the `const`, or * Remove the `std::move` ACKs for top commit: ryanofsky: Code review ACKfa875349e2. Looks good. Good for univalue to support c++11 move optimizations Tree-SHA512: 3dc5cad55b93cfa311abedfb811f35fc1b7f30a1c68561f15942438916c7de25e179c364be11881e01f844f9c2ccd71a3be55967ad5abd2f35b10bb7a882edea
This commit is contained in:
@@ -6,6 +6,7 @@ misc-unused-using-decls,
|
||||
modernize-use-default-member-init,
|
||||
modernize-use-nullptr,
|
||||
performance-for-range-copy,
|
||||
performance-move-const-arg,
|
||||
performance-unnecessary-copy-initialization,
|
||||
readability-redundant-declaration,
|
||||
readability-redundant-string-init,
|
||||
@@ -17,7 +18,11 @@ misc-unused-using-decls,
|
||||
modernize-use-default-member-init,
|
||||
modernize-use-nullptr,
|
||||
performance-for-range-copy,
|
||||
performance-move-const-arg,
|
||||
performance-unnecessary-copy-initialization,
|
||||
readability-redundant-declaration,
|
||||
readability-redundant-string-init,
|
||||
'
|
||||
CheckOptions:
|
||||
- key: performance-move-const-arg.CheckTriviallyCopyableMove
|
||||
value: false
|
||||
|
||||
Reference in New Issue
Block a user