summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-04-21 05:54:26 +0300
committerAndrei Karas <akaras@inbox.ru>2018-04-23 03:31:27 +0300
commitdeef43ce3342df308cd19c9ff37a2e953ed31cf1 (patch)
tree89f778f413734c62e0176a5541b628f8318511dc /src/being
parent3147797b7973250aabbd2fdd8cf54dda35fd440a (diff)
downloadplus-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.gz
plus-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.bz2
plus-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.xz
plus-deef43ce3342df308cd19c9ff37a2e953ed31cf1.zip
Fix different cast issues and remove useless explicit keywords.
Diffstat (limited to 'src/being')
-rw-r--r--src/being/localplayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/localplayer.h b/src/being/localplayer.h
index f8faaaecb..14d38108d 100644
--- a/src/being/localplayer.h
+++ b/src/being/localplayer.h
@@ -55,8 +55,8 @@ class LocalPlayer final : public Being,
/**
* Constructor.
*/
- explicit LocalPlayer(const BeingId id,
- const BeingTypeId subType);
+ LocalPlayer(const BeingId id,
+ const BeingTypeId subType);
A_DELETE_COPY(LocalPlayer)