Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/odb/src/lefin/lefLayerPropParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class lefTechLayerMinStepParser
bool parse(const std::string&, dbTechLayer*, lefinReader*);

private:
odb::dbTechLayerMinStepRule* curRule;
odb::dbTechLayerMinStepRule* rule = nullptr;
void createSubRule(odb::dbTechLayer* layer);
void setMinAdjacentLength1(double length, odb::lefinReader* l);
void setMinAdjacentLength2(double length, odb::lefinReader* l);
Expand Down Expand Up @@ -103,7 +103,7 @@ class lefTechLayerCutClassParser
class lefTechLayerCutSpacingParser
{
public:
odb::dbTechLayerCutSpacingRule* curRule;
odb::dbTechLayerCutSpacingRule* rule = nullptr;
bool parse(const std::string&,
dbTechLayer*,
lefinReader*,
Expand All @@ -113,7 +113,7 @@ class lefTechLayerCutSpacingParser
class lefTechLayerCutSpacingTableParser
{
public:
odb::dbTechLayerCutSpacingTableDefRule* curRule = nullptr;
odb::dbTechLayerCutSpacingTableDefRule* rule = nullptr;
odb::dbTechLayer* layer;
lefTechLayerCutSpacingTableParser(odb::dbTechLayer* inly) { layer = inly; };
bool parse(const std::string&,
Expand Down
Loading