File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ class EdgeWalker {
153
153
current_idx_ = 0 ;
154
154
155
155
for (const auto & node : *nodes) {
156
- num_edges_ += nodes_-> num_edges (node.id ());
156
+ num_edges_ += nodes_->num_edges (node.id ());
157
157
}
158
158
}
159
159
@@ -181,7 +181,7 @@ class EdgeWalker {
181
181
current_edge_ += 1 ;
182
182
}
183
183
184
- if (current_edge_ >= nodes_-> num_edges (RRNodeId (current_src_inode_))) {
184
+ if (current_edge_ >= nodes_->num_edges (RRNodeId (current_src_inode_))) {
185
185
// Done with current_src_inode_, advance to the end of the
186
186
// node list, or the next node with at least 1 edge.
187
187
current_edge_ = 0 ;
@@ -194,7 +194,7 @@ class EdgeWalker {
194
194
VTR_ASSERT (current_idx_ + 1 == num_edges_);
195
195
return current_idx_++;
196
196
}
197
- } while (nodes_-> num_edges (RRNodeId (current_src_inode_)) < 1 );
197
+ } while (nodes_->num_edges (RRNodeId (current_src_inode_)) < 1 );
198
198
}
199
199
200
200
VTR_ASSERT (current_src_inode_ < nodes_->size ());
You can’t perform that action at this time.
0 commit comments