Skip to content

Commit 2c8b2c5

Browse files
committed
make format
1 parent 73009b1 commit 2c8b2c5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

vpr/src/pack/prepack.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,13 +1219,14 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns&
12191219
continue;
12201220
}
12211221
}
1222-
/** To avoid visiting the same connection twice, since it is both stored in from_pin and to_pin,
1222+
/*
1223+
* To avoid visiting the same connection twice, since it is both stored in from_pin and to_pin,
12231224
* add the from_pin and to_pin to the visited sets
12241225
*/
12251226
visited_from_pins.insert(current_connenction->from_pin);
12261227
visited_to_pins.insert(current_connenction->to_pin);
1227-
1228-
/** The from_pin block belongs to the pattern block */
1228+
1229+
/* The from_pin block belongs to the pattern block */
12291230
pattern_blocks.insert(current_connenction->from_pin->port->parent_pb_type);
12301231
pack_pattern_blocks.push(current_connenction->to_block);
12311232
current_connenction = current_connenction->next;

0 commit comments

Comments
 (0)