mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
Library/Cell name/filename args string_view
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
@@ -38,12 +38,12 @@ namespace sta {
|
||||
|
||||
static constexpr char escape_ = '\\';
|
||||
|
||||
ConcreteLibrary::ConcreteLibrary(std::string name,
|
||||
std::string filename,
|
||||
ConcreteLibrary::ConcreteLibrary(std::string_view name,
|
||||
std::string_view filename,
|
||||
bool is_liberty) :
|
||||
name_(std::move(name)),
|
||||
name_(name),
|
||||
id_(ConcreteNetwork::nextObjectId()),
|
||||
filename_(std::move(filename)),
|
||||
filename_(filename),
|
||||
is_liberty_(is_liberty),
|
||||
bus_brkt_left_('['),
|
||||
bus_brkt_right_(']')
|
||||
|
||||
Reference in New Issue
Block a user