From 6a2bfbe4b120c8b23dee3ee1f9eed5483e212239 Mon Sep 17 00:00:00 2001 From: andyfox-rushc Date: Tue, 29 Oct 2024 12:52:02 -0700 Subject: [PATCH] Ctidy suggestion, remove virtual for override Signed-off-by: andyfox-rushc --- src/dbSta/src/dbNetwork.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbSta/src/dbNetwork.cc b/src/dbSta/src/dbNetwork.cc index fcc63c97c08..f4becd8ddf8 100644 --- a/src/dbSta/src/dbNetwork.cc +++ b/src/dbSta/src/dbNetwork.cc @@ -2820,7 +2820,7 @@ class PinModuleConnection : public PinVisitor PinModuleConnection(const dbNetwork* nwk, const Pin* drvr_pin, const dbModule* target_module_); - virtual void operator()(const Pin* pin) override; + void operator()(const Pin* pin) override; protected: const dbNetwork* db_network_;