Skip to content

Commit 0dfc717

Browse files
committed
clang-tidy
Signed-off-by: osamahammad21 <[email protected]>
1 parent e390199 commit 0dfc717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/odb/src/3dblox/checker.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include <map>
66
#include <vector>
77

8-
#include "fmt/format.h"
98
#include "odb/db.h"
109
#include "utl/Logger.h"
1110

@@ -164,8 +163,9 @@ void Checker::checkOverlappingChips(odb::dbChip* chip,
164163
marker->addSource(inst2);
165164

166165
// Add a comment describing the overlap
167-
marker->setComment(fmt::format(
168-
"Chips '{}' and '{}' overlap", inst1->getName(), inst2->getName()));
166+
std::string comment = "Chips " + inst1->getName() + " and "
167+
+ inst2->getName() + " overlap";
168+
marker->setComment(comment);
169169
}
170170
}
171171
}

0 commit comments

Comments
 (0)