diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:18:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:18:49 +0300 |
commit | a4fb136ebf9272e6254081fa0586ce8b383857d9 (patch) | |
tree | f85c7d327f161afb16eb56d68291c69bc12ba5d6 /src/being/playerrelations.cpp | |
parent | 812d9efc5f3ef90c81ffa04c3780cd0ada7e3e71 (diff) | |
download | plus-a4fb136ebf9272e6254081fa0586ce8b383857d9.tar.gz plus-a4fb136ebf9272e6254081fa0586ce8b383857d9.tar.bz2 plus-a4fb136ebf9272e6254081fa0586ce8b383857d9.tar.xz plus-a4fb136ebf9272e6254081fa0586ce8b383857d9.zip |
add final keyword to being files.
Diffstat (limited to 'src/being/playerrelations.cpp')
-rw-r--r-- | src/being/playerrelations.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/being/playerrelations.cpp b/src/being/playerrelations.cpp index b06539ea0..db9d46314 100644 --- a/src/being/playerrelations.cpp +++ b/src/being/playerrelations.cpp @@ -73,7 +73,7 @@ class PlayerConfSerialiser final : public: ConfigurationObject *writeConfigItem( const std::pair<std::string, PlayerRelation *> &value, - ConfigurationObject *const cobj) const override + ConfigurationObject *const cobj) const override final { if (!cobj || !value.second) return nullptr; @@ -87,7 +87,7 @@ public: std::map<std::string, PlayerRelation *> * readConfigItem(const ConfigurationObject *const cobj, std::map<std::string, PlayerRelation *> - *const container) const override + *const container) const override final { if (!cobj) return container; @@ -468,7 +468,7 @@ public: } void ignore(Being *const being A_UNUSED, - const unsigned int flags A_UNUSED) const override + const unsigned int flags A_UNUSED) const override final { } }; @@ -485,7 +485,7 @@ public: } void ignore(Being *const being, - const unsigned int flags A_UNUSED) const override + const unsigned int flags A_UNUSED) const override final { if (!being) return; @@ -508,7 +508,7 @@ public: } void ignore(Being *const being, - const unsigned int flags A_UNUSED) const override + const unsigned int flags A_UNUSED) const override final { if (!being) return; @@ -531,7 +531,7 @@ public: } void ignore(Being *const being, - const unsigned int flags A_UNUSED) const override + const unsigned int flags A_UNUSED) const override final { if (!being) return; |