Skip to content

Commit d537c1e

Browse files
committed
Remove unused menuId member per code review comment.
Signed-off-by: Christopher D. Leary <[email protected]>
1 parent 0ece0ac commit d537c1e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*.rej
1111
*.orig
1212
*.vscode
13-
*.swp
13+
*.sw[opqr]
1414
TAGS
1515
*~
1616
\#*#

src/rcx/include/rcx/extRCap.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,6 @@ class extMain
16011601
Ath__array1D<int>* _btermTable;
16021602
Ath__array1D<int>* _itermTable;
16031603

1604-
uint _menuId;
16051604
uint _dbPowerId;
16061605
uint _dbSignalId;
16071606
uint _RsegId;
@@ -1805,7 +1804,7 @@ class extMain
18051804
ISPEF_ORIGINAL_PLUS_HALO,
18061805
ISPEF_NEW_PLUS_HALO,
18071806
};
1808-
extMain(uint menuId);
1807+
extMain();
18091808

18101809
void set_debug_nets(const char* nets)
18111810
{

src/rcx/src/extmain.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ void extMain::setupMapping(uint itermCnt)
395395
_itermTable = new Ath__array1D<int>(itermCnt);
396396
_nodeTable = new Ath__array1D<int>(16000);
397397
}
398-
extMain::extMain(uint menuId)
398+
extMain::extMain()
399399
: _db(nullptr),
400400
_tech(nullptr),
401401
_block(nullptr),
@@ -476,7 +476,6 @@ extMain::extMain(uint menuId)
476476
_gndcFactor = 1.0;
477477
_gndcModify = false;
478478

479-
_menuId = menuId;
480479
_dbPowerId = 1;
481480
_dbSignalId = 2;
482481
_CCsegId = 3;

0 commit comments

Comments
 (0)