Merge pull request #6637 from sidkshatriya/small-move-optimization-2
nix-env: A small std::move() optimization
This commit is contained in:
commit
17e54a602e
1 changed files with 1 additions and 1 deletions
|
@ -1485,7 +1485,7 @@ static int main_nix_env(int argc, char * * argv)
|
||||||
if (globals.profile == "")
|
if (globals.profile == "")
|
||||||
globals.profile = getDefaultProfile();
|
globals.profile = getDefaultProfile();
|
||||||
|
|
||||||
op(globals, opFlags, opArgs);
|
op(globals, std::move(opFlags), std::move(opArgs));
|
||||||
|
|
||||||
globals.state->printStats();
|
globals.state->printStats();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue