summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2012-01-23 20:23:56 +0100
committerPerttu Ahola <celeron55@gmail.com>2012-02-02 15:54:20 +0200
commit64af6d3afe6ff677aa25e2cbb7395a911f8621af (patch)
treeab73593d00325ca2866ef240331749ed20645f3a /src/player.h
parent365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7 (diff)
downloadminetest-64af6d3afe6ff677aa25e2cbb7395a911f8621af.tar.gz
minetest-64af6d3afe6ff677aa25e2cbb7395a911f8621af.tar.bz2
minetest-64af6d3afe6ff677aa25e2cbb7395a911f8621af.zip
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.h2
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
{