Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
0842494f
Commit
0842494f
authored
Dec 23, 2014
by
Alexandre Duret-Lutz
Browse files
* src/bin/autfilt.cc: Missing std::move.
parent
84620175
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/autfilt.cc
View file @
0842494f
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment