Skip to content

Commit c9eba38

Browse files
committed
grt: clang-format and clang-tidy
Signed-off-by: Eder Monteiro <emrmonteiro@precisioninno.com>
1 parent b037a7e commit c9eba38

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/grt/include/grt/GlobalRouter.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include <cstdint>
77
#include <fstream>
8+
#include <limits>
89
#include <map>
910
#include <memory>
1011
#include <set>

src/grt/src/GlobalRouter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3745,7 +3745,8 @@ std::vector<Net*> GlobalRouter::findNets(bool init_clock_nets)
37453745
std::vector<Net*> clk_nets;
37463746
const int large_fanout_threshold = 1000;
37473747
for (odb::dbNet* db_net : db_nets) {
3748-
const bool is_special = db_net->getSigType().isSupply() && db_net->isSpecial();
3748+
const bool is_special
3749+
= db_net->getSigType().isSupply() && db_net->isSpecial();
37493750
if (!is_special && db_net->getTermCount() > skip_large_fanout_) {
37503751
logger_->info(GRT,
37513752
280,

0 commit comments

Comments
 (0)