diff options
| author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2012-01-23 20:23:56 +0100 |
|---|---|---|
| committer | Perttu Ahola <celeron55@gmail.com> | 2012-02-02 15:54:20 +0200 |
| commit | 64af6d3afe6ff677aa25e2cbb7395a911f8621af (patch) | |
| tree | ab73593d00325ca2866ef240331749ed20645f3a /src/player.h | |
| parent | 365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7 (diff) | |
| download | dragonfireclient-64af6d3afe6ff677aa25e2cbb7395a911f8621af.tar.xz | |
Fix some warnings on some compilers
ItemStack is a struct, not a class
CollisionInfo is a struct, not a class
InventoryAction is abstract and it needs a virtual destructor
Diffstat (limited to 'src/player.h')
| -rw-r--r-- | src/player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player.h b/src/player.h index 085a4a15a..d62fb6111 100644 --- a/src/player.h +++ b/src/player.h @@ -30,7 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc., class Map; class IGameDef; -class CollisionInfo; +struct CollisionInfo; class Player { |
