Skip to content

Commit

Permalink
Remove final keyword to from class contains virtual functions (#33498)
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca committed May 21, 2024
1 parent 56bebef commit 3c6bd79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/common/pigweed/rpc_services/BooleanState.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace chip {
namespace rpc {

class BooleanState final : public pw_rpc::nanopb::BooleanState::Service<BooleanState>
class BooleanState : public pw_rpc::nanopb::BooleanState::Service<BooleanState>
{
public:
virtual ~BooleanState() = default;
Expand Down
2 changes: 1 addition & 1 deletion examples/common/pigweed/rpc_services/Locking.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
namespace chip {
namespace rpc {

class Locking final : public pw_rpc::nanopb::Locking::Service<Locking>
class Locking : public pw_rpc::nanopb::Locking::Service<Locking>
{
public:
virtual ~Locking() = default;
Expand Down

0 comments on commit 3c6bd79

Please sign in to comment.