Skip to content

Commit 8efc261

Browse files
Updated formatting for rr_graph_uxsdcxx_serializer.h
1 parent 6d14f83 commit 8efc261

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vpr/src/route/rr_graph_uxsdcxx_serializer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class EdgeWalker {
153153
current_idx_ = 0;
154154

155155
for (const auto& node : *nodes) {
156-
num_edges_ += nodes_-> num_edges(node.id());
156+
num_edges_ += nodes_->num_edges(node.id());
157157
}
158158
}
159159

@@ -181,7 +181,7 @@ class EdgeWalker {
181181
current_edge_ += 1;
182182
}
183183

184-
if (current_edge_ >= nodes_-> num_edges(RRNodeId(current_src_inode_))) {
184+
if (current_edge_ >= nodes_->num_edges(RRNodeId(current_src_inode_))) {
185185
// Done with current_src_inode_, advance to the end of the
186186
// node list, or the next node with at least 1 edge.
187187
current_edge_ = 0;
@@ -194,7 +194,7 @@ class EdgeWalker {
194194
VTR_ASSERT(current_idx_ + 1 == num_edges_);
195195
return current_idx_++;
196196
}
197-
} while (nodes_-> num_edges(RRNodeId(current_src_inode_)) < 1);
197+
} while (nodes_->num_edges(RRNodeId(current_src_inode_)) < 1);
198198
}
199199

200200
VTR_ASSERT(current_src_inode_ < nodes_->size());

0 commit comments

Comments
 (0)