mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-04 00:39:45 +02:00
StdStringSeq -> StringSeq
Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
@@ -62,7 +62,7 @@ sta::SpefParse::error(const location_type &loc,
|
||||
char *string;
|
||||
int integer;
|
||||
float number;
|
||||
sta::StdStringSeq *std_string_seq;
|
||||
sta::StringSeq *std_string_seq;
|
||||
sta::PortDirection *port_dir;
|
||||
sta::SpefRspfPi *pi;
|
||||
sta::SpefTriple *triple;
|
||||
@@ -220,7 +220,7 @@ design_flow:
|
||||
|
||||
qstrings:
|
||||
QSTRING
|
||||
{ $$ = new sta::StdStringSeq;
|
||||
{ $$ = new sta::StringSeq;
|
||||
$$->push_back($1);
|
||||
sta::stringDelete($1);
|
||||
}
|
||||
|
||||
@@ -291,7 +291,7 @@ SpefReader::portDirection(char *spef_dir)
|
||||
}
|
||||
|
||||
void
|
||||
SpefReader::setDesignFlow(StdStringSeq *flow)
|
||||
SpefReader::setDesignFlow(StringSeq *flow)
|
||||
{
|
||||
design_flow_ = std::move(*flow);
|
||||
delete flow;
|
||||
|
||||
@@ -82,7 +82,7 @@ public:
|
||||
void makeNameMapEntry(const char *index,
|
||||
const char *name);
|
||||
const char *nameMapLookup(const char *index);
|
||||
void setDesignFlow(StdStringSeq *flow_keys);
|
||||
void setDesignFlow(StringSeq *flow_keys);
|
||||
Pin *findPin(char *name);
|
||||
Net *findNet(const char *name);
|
||||
void rspfBegin(Net *net,
|
||||
@@ -139,7 +139,7 @@ private:
|
||||
float res_scale_;
|
||||
float induct_scale_;
|
||||
SpefNameMap name_map_;
|
||||
StdStringSeq design_flow_;
|
||||
StringSeq design_flow_;
|
||||
Parasitics *parasitics_;
|
||||
Parasitic *parasitic_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user