diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-21 23:11:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-21 23:22:06 +0300 |
commit | 67d5177ef4f5d54ea8edc5403ed20f9ade56e8bf (patch) | |
tree | 0efb80c3cf13e5f859c522da923cf7fddac90bc5 /src/configuration.cpp | |
parent | 73f36dd1934b3d0cdd52f13cab15480de4d0b9d2 (diff) | |
download | ManaVerse-67d5177ef4f5d54ea8edc5403ed20f9ade56e8bf.tar.gz ManaVerse-67d5177ef4f5d54ea8edc5403ed20f9ade56e8bf.tar.bz2 ManaVerse-67d5177ef4f5d54ea8edc5403ed20f9ade56e8bf.tar.xz ManaVerse-67d5177ef4f5d54ea8edc5403ed20f9ade56e8bf.zip |
fix code style and some other fixes after auto checks.
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r-- | src/configuration.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index 05b048408..ca2281a71 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -317,7 +317,13 @@ void ConfigurationObject::clear() ConfigurationObject::ConfigurationObject() : mOptions(), +#ifdef DEBUG_CONFIG + mContainerOptions(), + mLogKeys(false), + mIsMain(false) +#else mContainerOptions() +#endif { } |