sta::format

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-03-15 14:51:13 -07:00
parent 134b547501
commit 5a1b4cb74b
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ pin_location(const Pin *pin)
network->location(pin, x, y, exists);
// return x/y as tcl list
if (exists)
return std::format("{} {}", x, y);
return sta::format("{} {}", x, y);
else
return "";
}