We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e390199 commit 0dfc717Copy full SHA for 0dfc717
src/odb/src/3dblox/checker.cpp
@@ -5,7 +5,6 @@
5
#include <map>
6
#include <vector>
7
8
-#include "fmt/format.h"
9
#include "odb/db.h"
10
#include "utl/Logger.h"
11
@@ -164,8 +163,9 @@ void Checker::checkOverlappingChips(odb::dbChip* chip,
164
163
marker->addSource(inst2);
165
166
// Add a comment describing the overlap
167
- marker->setComment(fmt::format(
168
- "Chips '{}' and '{}' overlap", inst1->getName(), inst2->getName()));
+ std::string comment = "Chips " + inst1->getName() + " and "
+ + inst2->getName() + " overlap";
+ marker->setComment(comment);
169
}
170
171
0 commit comments