summaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-05 10:13:15 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-06 21:49:14 +0000
commit3ce39d2b497ab5356290a22b324181386af51c51 (patch)
tree1b923b8be7e4d2ce8ff70768dc7fff596487935c /src/localplayer.h
parenta9df89bda908e3b3d443db7f3ca865b6f12c75e5 (diff)
downloadMana-3ce39d2b497ab5356290a22b324181386af51c51.tar.gz
Mana-3ce39d2b497ab5356290a22b324181386af51c51.tar.bz2
Mana-3ce39d2b497ab5356290a22b324181386af51c51.tar.xz
Mana-3ce39d2b497ab5356290a22b324181386af51c51.zip
General code cleanups
* Use final for all message handlers, Client, LocalPlayer, Being::getType, Being::setPosition and Being::setMap. (avoids some warnings about virtual dispatch in constructors) * Use auto in more places * Use emplace_back instead of push_back in some places * Use default member initializers * Less else after return * Removed superfluous .c_str() * Removed type aliases that are only used once * Removed more unused includes
Diffstat (limited to 'src/localplayer.h')
-rw-r--r--src/localplayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/localplayer.h b/src/localplayer.h
index de588402..43a1fe6d 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -58,7 +58,7 @@ enum
/**
* The local player character.
*/
-class LocalPlayer : public Being
+class LocalPlayer final : public Being
{
public:
LocalPlayer(int id= 65535, int subtype = 0);