Skip to content

Commit 3495696

Browse files
committed
Changed fmt::format_to() to append() in dbNetwork::pathName().
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent df73e67 commit 3495696

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dbSta/src/dbNetwork.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,8 @@ const char* dbNetwork::pathName(const Net* net) const
16281628
db_mod->getName(),
16291629
block_->getHierarchyDelimiter());
16301630
}
1631-
fmt::format_to(back_inserter, "{}", modnet_name);
1631+
// fmt::format_to(back_inserter, "{}", modnet_name);
1632+
full_path_buf.append(modnet_name);
16321633
full_path_buf.push_back('\0');
16331634
return tmpStringCopy(full_path_buf.data());
16341635
}

0 commit comments

Comments
 (0)