Skip to content

Commit f931302

Browse files
committed
make format
1 parent 837d2f9 commit f931302

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vpr/src/route/segment_stats.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,14 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
3939
{Y_AXIS, std::map<int, int>()}};
4040

4141
std::set<int, std::less<int>> segment_lengths;
42-
for (const auto& seg_inf: segment_inf) {
42+
for (const auto& seg_inf : segment_inf) {
4343
int seg_length = seg_inf.longline ? LONGLINE : seg_inf.length;
4444

4545
for (auto ax : {X_AXIS, Y_AXIS}) {
4646
directed_cap_by_length[ax].insert({seg_length, 0});
4747
directed_occ_by_length[ax].insert({seg_length, 0});
4848
}
4949

50-
5150
segment_lengths.insert(seg_length);
5251

5352
max_segment_name_length = std::max(max_segment_name_length, static_cast<int>(seg_inf.name.size()));

0 commit comments

Comments
 (0)