diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-17 23:08:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:18 +0300 |
commit | 0c6d457fe227ba9fd0a7c4c51cc2eb5995ca2c19 (patch) | |
tree | 65e05319c5a8ca51b3a6cc1fc36f9ff93bffb28b | |
parent | 6fdb272d7bc887de234daa2c056d9926cebdfe2b (diff) | |
download | mv-0c6d457fe227ba9fd0a7c4c51cc2eb5995ca2c19.tar.gz mv-0c6d457fe227ba9fd0a7c4c51cc2eb5995ca2c19.tar.bz2 mv-0c6d457fe227ba9fd0a7c4c51cc2eb5995ca2c19.tar.xz mv-0c6d457fe227ba9fd0a7c4c51cc2eb5995ca2c19.zip |
remove virtual from clear function in configuration.
because it was called from destructor.
-rw-r--r-- | src/configuration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configuration.h b/src/configuration.h index 3210958bb..54e5e2ca7 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -123,7 +123,7 @@ class ConfigurationObject /** * Re-sets all data in the configuration */ - virtual void clear(); + void clear(); /** * Serialises a container into a list of configuration options |