Fix warning

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

View file

@ -46,9 +46,12 @@ struct JsonConfigItem
{
/// Read config item from json object @p j
virtual void fromJson(const json& j) = 0;
/// @return config item serialized to json
/// @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>