Skip to content
Snippets Groups Projects
Commit e7b5f198 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[T/BL] Remove unnecessary pessimizing-move.

parent 225cbf5e
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ struct OrderedUniqueListGen ...@@ -85,7 +85,7 @@ struct OrderedUniqueListGen
std::sort(xs.begin(), xs.end()); std::sort(xs.begin(), xs.end());
auto last = std::unique(xs.begin(), xs.end()); auto last = std::unique(xs.begin(), xs.end());
xs.erase(last, xs.end()); xs.erase(last, xs.end());
return std::move(xs); return xs;
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment