Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Added virtual SettingInterface default destructor #1246

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Settings/include/Settings/SettingInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ class SettingInterface {
/// Define the observer type for this setting.
using ObserverType = SettingObserverInterface<SettingInterface<ValueType>>;

/**
* Destructor.
*/
virtual ~SettingInterface() = default;

/**
* Request to set the managed setting to the given @c value. Note that this is an asynchronous operation.
*
Expand Down