Skip to content

Commit 77b3f76

Browse files
committed
use NOLINTNEXTLINE to suppress fmt::format include-cleaner warning in clang-tidy-bazel
Signed-off-by: Thinh Nguyen <nguyenthinh19011@gmail.com>
1 parent 3d6d5d5 commit 77b3f76

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/ram/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ cc_library(
4040
"//src/sta:opensta_lib",
4141
"//src/utl",
4242
"@boost.stacktrace",
43-
"@spdlog",
4443
"@tcl_lang//:tcl",
4544
],
4645
)

src/ram/src/ram.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "pdn/PdnGen.hh"
2828
#include "ppl/IOPlacer.h"
2929
#include "ram/layout.h"
30-
#include "spdlog/fmt/fmt.h"
3130
#include "sta/ConcreteLibrary.hh"
3231
#include "sta/FuncExpr.hh"
3332
#include "sta/Liberty.hh"
@@ -1506,6 +1505,7 @@ void RamGen::generate(const int mask_size,
15061505
auto nl_cell = std::make_unique<Cell>();
15071506
makeInst(
15081507
nl_cell.get(),
1508+
// NOLINTNEXTLINE(misc-include-cleaner)
15091509
fmt::format("neg_lat_b{}", global_bit),
15101510
"nlat",
15111511
latch_cell_,

0 commit comments

Comments
 (0)