diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 04:41:52 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 04:41:52 +0100 |
commit | c0fa61340c00f7d2b7435e01a50a6dcdae18c88d (patch) | |
tree | 13ace4b5a8e08134b86a91e1e1c3aacc1d423b7e /src/libstore/content-address.cc | |
parent | 75fb95320541ab69d7c0996f4ee6b5081141a6d0 (diff) |
Merge pull request #9172 from tfc/bad-moves
Fix/remove some bad std::moves
(cherry picked from commit 8c049a9f044569ebda70231709f6f15d3073894a)
Change-Id: I720273378d2506a13883acee28abd096d099b0d4
Diffstat (limited to 'src/libstore/content-address.cc')
-rw-r--r-- | src/libstore/content-address.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/content-address.cc b/src/libstore/content-address.cc index e290a8d38..ae91b859b 100644 --- a/src/libstore/content-address.cc +++ b/src/libstore/content-address.cc @@ -83,7 +83,7 @@ static std::pair<ContentAddressMethod, HashType> parseContentAddressMethodPrefix if (!hashTypeRaw) throw UsageError("content address hash must be in form '<algo>:<hash>', but found: %s", wholeInput); HashType hashType = parseHashType(*hashTypeRaw); - return std::move(hashType); + return hashType; }; // Switch on prefix |