* src/bin/autfilt.cc: Missing std::move.
This commit is contained in:
parent
84620175e6
commit
0842494fed
1 changed files with 1 additions and 1 deletions
|
|
@ -610,7 +610,7 @@ namespace
|
|||
if (opt_destut)
|
||||
aut = spot::closure(std::move(aut));
|
||||
if (opt_instut)
|
||||
aut = spot::sl(aut);
|
||||
aut = spot::sl(std::move(aut));
|
||||
|
||||
if (opt_product)
|
||||
aut = spot::product(std::move(aut), opt_product);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue