Fix warning

This commit is contained in:
badaix 2024-07-02 18:46:39 +02:00
parent e901f0f9f4
commit ad6ab1ad3b

View file

@ -49,6 +49,9 @@ struct JsonConfigItem
/// @return config item serialized to json
virtual json toJson() = 0;
/// d'tor
virtual ~JsonConfigItem() = default;
protected:
/// @return value for key @p what or @p def, if not found. Result is casted to T.
template <typename T>