diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-04-21 05:54:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-04-23 03:31:27 +0300 |
commit | deef43ce3342df308cd19c9ff37a2e953ed31cf1 (patch) | |
tree | 89f778f413734c62e0176a5541b628f8318511dc /src/being | |
parent | 3147797b7973250aabbd2fdd8cf54dda35fd440a (diff) | |
download | mv-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.gz mv-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.bz2 mv-deef43ce3342df308cd19c9ff37a2e953ed31cf1.tar.xz mv-deef43ce3342df308cd19c9ff37a2e953ed31cf1.zip |
Fix different cast issues and remove useless explicit keywords.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/localplayer.h | 4 |
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) |