Skip to content

Commit cfb5d32

Browse files
committed
Avoid a warning about unused variables
1 parent 4114849 commit cfb5d32

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libs/librrgraph/src/base/rr_graph_utils.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ vtr::vector<RRNodeId, std::vector<RREdgeId>> get_fan_in_list(const RRGraphView&
140140
//Walk the graph and increment fanin on all dwnstream nodes
141141
rr_graph.rr_nodes().for_each_edge(
142142
[&](RREdgeId edge, RRNodeId src, RRNodeId sink) -> void {
143+
(void) src;
143144
node_fan_in_list[sink].push_back(edge);
144145
});
145146

0 commit comments

Comments
 (0)