libexpr: remove std::move() for basePath
in parser, it has no effect
This commit is contained in:
parent
2898dc71a8
commit
3d74e7b811
|
@ -663,7 +663,7 @@ Expr * EvalState::parse(
|
|||
ParseData data {
|
||||
.state = *this,
|
||||
.symbols = symbols,
|
||||
.basePath = std::move(basePath),
|
||||
.basePath = basePath,
|
||||
.origin = {origin},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue