Skip to content

Commit 365acdc

Browse files
committed
address clang-tidy
Signed-off-by: arthurjolo <[email protected]>
1 parent b0fd93c commit 365acdc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cts/include/cts/TritonCTS.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <vector>
1414

1515
#include "odb/db.h"
16+
#include "odb/geom.h"
1617

1718
namespace utl {
1819
class Logger;

src/cts/src/TritonCTS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ void TritonCTS::findLongEdges(
10781078
int dx = block_->getDieAreaPolygon().dx();
10791079
int dy = block_->getDieAreaPolygon().dy();
10801080

1081-
int64_t threshold = std::max(dx, dy) / 5;
1081+
int threshold = std::max(dx, dy) / 5;
10821082
// TODO : Make it a debug print
10831083
debugPrint(
10841084
logger_, CTS, "clock gate cloning", 1, "Threshold = {}", threshold);

0 commit comments

Comments
 (0)