Merge pull request #9172 from tfc/bad-moves

Fix/remove some bad std::moves

(cherry picked from commit 8c049a9f044569ebda70231709f6f15d3073894a)
Change-Id: I720273378d2506a13883acee28abd096d099b0d4
This commit is contained in:
eldritch horrors
2024-03-04 04:41:52 +01:00
parent 75fb953205
commit c0fa61340c
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ namespace nix {
SourcePath EvalState::rootPath(CanonPath path)
{
return std::move(path);
return path;
}
}