commentary.

This commit is contained in:
Kelvin Sherlock 2017-03-06 00:40:00 -05:00
parent ebd67dc0cc
commit 7f3ccd84c8
1 changed files with 1 additions and 0 deletions

View File

@ -921,6 +921,7 @@ std::vector<omf::segment> omf_segments;
template<class T>
void append(std::vector<T> &to, std::vector<T> &from) {
// std::move(from.begin(), from.end(), std::back_inserter(to));
to.insert(to.end(),
std::make_move_iterator(from.begin()),
std::make_move_iterator(from.end())