Merge bitcoin/bitcoin#25872: Fix issues when calling std::move(const&)

fa875349e2 Fix iwyu (MacroFake)
faad673716 Fix 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 ACK fa875349e2. Looks good. Good for univalue to support c++11 move optimizations

Tree-SHA512: 3dc5cad55b93cfa311abedfb811f35fc1b7f30a1c68561f15942438916c7de25e179c364be11881e01f844f9c2ccd71a3be55967ad5abd2f35b10bb7a882edea
This commit is contained in:
fanquake
2022-08-31 08:32:25 +01:00
15 changed files with 28 additions and 27 deletions

View File

@@ -6,12 +6,10 @@
#include <util/bip32.h>
#include <util/strencodings.h>
#include <algorithm>
#include <cstdint>
#include <cstdio>
#include <sstream>
bool ParseHDKeypath(const std::string& keypath_str, std::vector<uint32_t>& keypath)
{
std::stringstream ss(keypath_str);

View File

@@ -8,7 +8,6 @@
#include <key_io.h>
#include <pubkey.h>
#include <script/standard.h>
#include <serialize.h>
#include <uint256.h>
#include <util/message.h>
#include <util/strencodings.h>

View File

@@ -6,7 +6,6 @@
#include <span.h>
#include <util/strencodings.h>
#include <algorithm>
#include <array>
#include <cassert>
#include <cstring>

View File

@@ -6,10 +6,9 @@
#include <regex>
#include <string>
#include <utility>
void ReplaceAll(std::string& in_out, const std::string& search, const std::string& substitute)
{
if (search.empty()) return;
in_out = std::regex_replace(in_out, std::regex(std::move(search)), substitute);
in_out = std::regex_replace(in_out, std::regex(search), substitute);
}

View File

@@ -7,7 +7,6 @@
#include <util/spanparsing.h>
#include <algorithm>
#include <array>
#include <cstdint>
#include <cstring>