Skip to content

Commit 8f260ef

Browse files
committed
rcx: rm ununsed fields in dbCreateNetUtil
Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
1 parent 75d6372 commit 8f260ef

2 files changed

Lines changed: 1 addition & 13 deletions

File tree

src/rcx/include/rcx/dbUtil.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,9 @@ class dbCreateNetUtil
8181
std::vector<odb::dbTechLayer*> _routingLayers;
8282
int _ruleNameHint;
8383
odb::dbMatrix<std::vector<odb::dbTechVia*>> _vias;
84-
bool _milosFormat;
8584
odb::dbNet* _currentNet;
8685
odb::dbNet** _mapArray;
87-
uint32_t _mapCnt;
88-
uint32_t _ecoCnt;
8986
utl::Logger* logger_;
90-
bool _skipPowerNets;
91-
bool _useLocation;
92-
bool _verbose;
9387
};
9488

9589
} // namespace rcx

src/rcx/src/dbUtil.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,9 @@ dbCreateNetUtil::dbCreateNetUtil(utl::Logger* logger)
4141
: _tech(nullptr),
4242
_block(nullptr),
4343
_ruleNameHint(0),
44-
_milosFormat(false),
4544
_currentNet(nullptr),
4645
_mapArray(nullptr),
47-
_mapCnt(0),
48-
_ecoCnt(0),
49-
logger_(logger),
50-
_skipPowerNets(true),
51-
_useLocation(false),
52-
_verbose(false)
46+
logger_(logger)
5347
{
5448
}
5549
dbCreateNetUtil::~dbCreateNetUtil()

0 commit comments

Comments
 (0)