Skip to content

Commit

Permalink
chore: Remove some default virtual destructors (#771)
Browse files Browse the repository at this point in the history
Remove some default virtual destructors
  • Loading branch information
oguzcanoguz authored Nov 14, 2024
1 parent e626133 commit d83ce0c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions services/ble/BondStorageSynchronizer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ namespace services
BondStorageSynchronizer() = default;
BondStorageSynchronizer(const BondStorageSynchronizer& other) = delete;
BondStorageSynchronizer& operator=(const BondStorageSynchronizer& other) = delete;
virtual ~BondStorageSynchronizer() = default;

public:
virtual void UpdateBondedDevice(hal::MacAddress address) = 0;
Expand All @@ -27,7 +26,6 @@ namespace services
BondStorage() = default;
BondStorage(const BondStorage& other) = delete;
BondStorage& operator=(const BondStorage& other) = delete;
virtual ~BondStorage() = default;

public:
virtual void BondStorageSynchronizerCreated(BondStorageSynchronizer& manager) = 0;
Expand Down
1 change: 0 additions & 1 deletion services/ble/GattServer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ namespace services
GattServer() = default;
GattServer(GattServer& other) = delete;
GattServer& operator=(const GattServer& other) = delete;
virtual ~GattServer() = default;

virtual void AddService(GattServerService& service) = 0;
};
Expand Down

0 comments on commit d83ce0c

Please sign in to comment.