aboutsummaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-08-18 08:21:01 +0200
committerLoic Blot <loic.blot@unix-experience.fr>2017-08-18 08:21:01 +0200
commit951f1201c413c1137cfbef771bdd575c9c7e01bb (patch)
treeed026ec17a71e46232a87f8ee95e599503f335cb /src/localplayer.h
parent1d086aee7cc193bed2f8ca09cc2e020f509378f1 (diff)
downloaddragonfireclient-951f1201c413c1137cfbef771bdd575c9c7e01bb.tar.xz
Modernize various files (src/k*, src/l*)
* range-based for loops * code style * C++ headers instead of C headers * Default operators
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 9965897ac..c64e0042a 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -43,7 +43,7 @@ class LocalPlayer : public Player
{
public:
LocalPlayer(Client *client, const char *name);
- virtual ~LocalPlayer();
+ virtual ~LocalPlayer() = default;
ClientActiveObject *parent = nullptr;