Add override to destructors of settings catigories

This commit is contained in:
AdenKoperczak 2025-01-29 10:10:14 -05:00
parent 36339e613f
commit f84a86a3a3
11 changed files with 11 additions and 11 deletions

View file

@ -15,7 +15,7 @@ class LineSettings : public SettingsCategory
{
public:
explicit LineSettings(const std::string& name);
~LineSettings();
~LineSettings() override;
LineSettings(const LineSettings&) = delete;
LineSettings& operator=(const LineSettings&) = delete;