aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/content-address.cc
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-04 04:41:52 +0100
committereldritch horrors <pennae@lix.systems>2024-03-04 04:41:52 +0100
commitc0fa61340c00f7d2b7435e01a50a6dcdae18c88d (patch)
tree13ace4b5a8e08134b86a91e1e1c3aacc1d423b7e /src/libstore/content-address.cc
parent75fb95320541ab69d7c0996f4ee6b5081141a6d0 (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.cc2
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