File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ class RRGraphView {
592592 *
593593 * @note Iterating on the range returned by this function will not give you an RREdgeId, but instead gives you the index among a node's outgoing edges
594594 */
595- inline edge_idx_range edges (const RRNodeId& id) const {
595+ inline edge_idx_range edges (RRNodeId id) const {
596596 return vtr::make_range (edge_idx_iterator (0 ), edge_idx_iterator (num_edges (id)));
597597 }
598598
@@ -608,7 +608,7 @@ class RRGraphView {
608608 /* *
609609 * @brief Return ID range for outgoing edges.
610610 */
611- inline edge_idx_range node_out_edges (const RRNodeId& id) const {
611+ inline edge_idx_range node_out_edges (RRNodeId id) const {
612612 return vtr::make_range (edge_idx_iterator (0 ), edge_idx_iterator (num_edges (id)));
613613 }
614614
You can’t perform that action at this time.
0 commit comments