diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-18 13:20:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-18 13:20:34 +0300 |
commit | 0c863b2e2cc7f5be6baa918c8fffb0ee44c02cc7 (patch) | |
tree | aebc2d6eae2325c1c077849cc43f8ac07d6a76f6 /src/configuration.h | |
parent | 4b754c29f7fe0c7531fa6ce68a70a913e7172337 (diff) | |
download | plus-0c863b2e2cc7f5be6baa918c8fffb0ee44c02cc7.tar.gz plus-0c863b2e2cc7f5be6baa918c8fffb0ee44c02cc7.tar.bz2 plus-0c863b2e2cc7f5be6baa918c8fffb0ee44c02cc7.tar.xz plus-0c863b2e2cc7f5be6baa918c8fffb0ee44c02cc7.zip |
Add missing override keywords.
Diffstat (limited to 'src/configuration.h')
-rw-r--r-- | src/configuration.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configuration.h b/src/configuration.h index a89d67ea2..83a446f4e 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -290,7 +290,8 @@ class Configuration final : public ConfigurationObject const unsigned line); #endif - void setValue(const std::string &key, const std::string &value); + void setValue(const std::string &key, + const std::string &value) override; void incValue(const std::string &key); |