Use std::move explicitly to avoid ambiguity with boost

This commit is contained in:
Matthew Barr
2017-03-03 14:53:41 +11:00
parent eed2743d04
commit c50a931bb4
7 changed files with 12 additions and 12 deletions

View File

@@ -185,7 +185,7 @@ void remapAnchoredReports(raw_dfa &rdfa, const RoseBuildImpl &build) {
assert(id < build.literal_info.size());
new_reports.insert(build.literal_info.at(id).fragment_id);
}
ds.reports = move(new_reports);
ds.reports = std::move(new_reports);
}
}
@@ -220,7 +220,7 @@ void remapIdsToPrograms(const RoseBuildImpl &build, raw_dfa &rdfa) {
auto &frag = build.fragments.at(fragment_id);
new_reports.insert(frag.lit_program_offset);
}
ds.reports = move(new_reports);
ds.reports = std::move(new_reports);
}
}