Skip to content

Commit fffa51a

Browse files
committed
Added NOLINT(misc-include-cleaner) for fmt::join()
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent f8e051b commit fffa51a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/odb/src/db/dbNet.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2403,11 +2403,12 @@ void dbNet::checkSanity() const
24032403
size_t drvr_count = drvr_info_list.size();
24042404
if (drvr_count > 1) {
24052405
// Multiple drivers found.
2406-
logger->error(utl::ODB,
2407-
49,
2408-
"SanityCheck: dbNet '{}' has multiple drivers: {}",
2409-
getName(),
2410-
fmt::join(drvr_info_list, ""));
2406+
logger->error(
2407+
utl::ODB,
2408+
49,
2409+
"SanityCheck: dbNet '{}' has multiple drivers: {}",
2410+
getName(),
2411+
fmt::join(drvr_info_list, "")); // NOLINT(misc-include-cleaner)
24112412
}
24122413

24132414
const uint iterm_count = getITerms().size();

0 commit comments

Comments
 (0)