Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/librrgraph/src/base/rr_graph_storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ class t_rr_graph_storage {
vtr::StrongIdRange<RREdgeId> edge_range(RREdgeId(0), RREdgeId(num_edges));
std::vector<RREdgeId> edge_indices(edge_range.begin(), edge_range.end());

std::ranges::stable_sort(edge_indices, comparison_function);
std::stable_sort(edge_indices.begin(), edge_indices.end(), comparison_function);

// Generic lambda that allocates a 'vec'-sized new vector with all elements set to default value,
// then builds the new vector to have rearranged elements from 'vec' and finaly move the new vector
Expand Down