libexpr: remove std::move() for basePath in parser, it has no effect

This commit is contained in:
Yingchi Long
2023-07-10 12:02:29 +08:00
parent 2898dc71a8
commit 3d74e7b811
+1 -1
View File
@@ -663,7 +663,7 @@ Expr * EvalState::parse(
ParseData data {
.state = *this,
.symbols = symbols,
.basePath = std::move(basePath),
.basePath = basePath,
.origin = {origin},
};