forked from lix-project/lix
Merge pull request #8681 from inclyc/libexpr/parser-move-noeffect
libexpr: remove std::move() for `basePath` in parser, it has no effect
This commit is contained in:
commit
fea7d3b1cd
|
@ -663,7 +663,7 @@ Expr * EvalState::parse(
|
||||||
ParseData data {
|
ParseData data {
|
||||||
.state = *this,
|
.state = *this,
|
||||||
.symbols = symbols,
|
.symbols = symbols,
|
||||||
.basePath = std::move(basePath),
|
.basePath = basePath,
|
||||||
.origin = {origin},
|
.origin = {origin},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue