Skip to content

Commit d5f7769

Browse files
committed
clang-tidy: resolve readability-inconsistent-declaration-parameter-name.
Signed-off-by: Mike Inouye <mikeinouye@google.com>
1 parent de552b4 commit d5f7769

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/dbSta/include/db_sta/dbNetwork.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,8 @@ class dbNetwork : public ConcreteNetwork
438438

439439
// supply pin functions
440440
bool isSupplyPin(odb::dbITerm* iterm) const;
441-
bool isValidFlop(odb::dbInst* inst) const;
442-
bool isValidTray(odb::dbInst* inst) const;
441+
bool isValidFlop(odb::dbInst* FF) const;
442+
bool isValidTray(odb::dbInst* tray) const;
443443

444444
////////////////////////////////////////////////////////////////
445445

src/dft/src/utils/Utils.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ std::optional<sta::Clock*> GetClock(sta::dbSta* sta, odb::dbITerm* iterm);
4040
// Checks if the given LibertyCell is really a Scan Cell with a Scan In and a
4141
// Scan Enable
4242
bool IsScanCell(const sta::dbNetwork* db_network,
43-
const sta::LibertyCell* libertyCell);
43+
const sta::LibertyCell* liberty_cell);
4444

4545
// Convenience method to create a new port
4646
odb::dbBTerm* CreateNewPort(odb::dbBlock* block,

0 commit comments

Comments
 (0)