From 3c6bd79dcffc0a988984ba6d4092aa433df843ad Mon Sep 17 00:00:00 2001 From: Yufeng Wang Date: Tue, 21 May 2024 15:24:24 +0000 Subject: [PATCH] Remove final keyword to from class contains virtual functions (#33498) --- examples/common/pigweed/rpc_services/BooleanState.h | 2 +- examples/common/pigweed/rpc_services/Locking.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/common/pigweed/rpc_services/BooleanState.h b/examples/common/pigweed/rpc_services/BooleanState.h index bb4b524459d03d..2e0f15d6cb316d 100644 --- a/examples/common/pigweed/rpc_services/BooleanState.h +++ b/examples/common/pigweed/rpc_services/BooleanState.h @@ -28,7 +28,7 @@ namespace chip { namespace rpc { -class BooleanState final : public pw_rpc::nanopb::BooleanState::Service +class BooleanState : public pw_rpc::nanopb::BooleanState::Service { public: virtual ~BooleanState() = default; diff --git a/examples/common/pigweed/rpc_services/Locking.h b/examples/common/pigweed/rpc_services/Locking.h index 6d2e912858b47f..8f851592e8642b 100644 --- a/examples/common/pigweed/rpc_services/Locking.h +++ b/examples/common/pigweed/rpc_services/Locking.h @@ -27,7 +27,7 @@ namespace chip { namespace rpc { -class Locking final : public pw_rpc::nanopb::Locking::Service +class Locking : public pw_rpc::nanopb::Locking::Service { public: virtual ~Locking() = default;