mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
writeEodProgram: avoid make_move_iterator warning
Avoid an ambiguity between std:: and boost::make_move_iterator on builds against libc++.
This commit is contained in:
parent
b2ebdac642
commit
b6508811c0
@ -3627,7 +3627,9 @@ u32 writeEodProgram(RoseBuildImpl &build, build_context &bc) {
|
||||
// Collect all edges leading into EOD event literal vertices.
|
||||
vector<RoseEdge> edge_list;
|
||||
for (const auto &v : lit_info.vertices) {
|
||||
insert(&edge_list, edge_list.end(), in_edges(v, g));
|
||||
for (const auto &e : in_edges_range(v, g)) {
|
||||
edge_list.push_back(e);
|
||||
}
|
||||
}
|
||||
|
||||
// Sort edge list for determinism, prettiness.
|
||||
|
Loading…
x
Reference in New Issue
Block a user