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

@@ -1032,7 +1032,7 @@ void packInfixTops(NGHolder &h, RoseGraph &g,
updated_tops.insert(top_mapping.at(t));
}
}
h[e].tops = move(updated_tops);
h[e].tops = std::move(updated_tops);
if (h[e].tops.empty()) {
DEBUG_PRINTF("edge (start,%zu) has only unused tops\n", h[v].index);
dead.push_back(e);