summaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_inventory.h
diff options
context:
space:
mode:
authorKahrl <kahrl@gmx.net>2013-06-06 22:57:38 +0200
committerKahrl <kahrl@gmx.net>2013-06-06 22:57:38 +0200
commit773471750dbea73431934ac3736c23564da986b5 (patch)
tree612c520d341f0672a11f69d0118ac51ba368492a /src/script/cpp_api/s_inventory.h
parent6b3e553dd5ca7f31a5e9fc68a3b7f3b59b85e511 (diff)
downloadminetest-773471750dbea73431934ac3736c23564da986b5.tar.gz
minetest-773471750dbea73431934ac3736c23564da986b5.tar.bz2
minetest-773471750dbea73431934ac3736c23564da986b5.zip
Fix class/struct forward declaration inconsistencies (good on ya, MSVC)
Diffstat (limited to 'src/script/cpp_api/s_inventory.h')
-rw-r--r--src/script/cpp_api/s_inventory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/cpp_api/s_inventory.h b/src/script/cpp_api/s_inventory.h
index bf3b5de85..d1a81de80 100644
--- a/src/script/cpp_api/s_inventory.h
+++ b/src/script/cpp_api/s_inventory.h
@@ -22,7 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "cpp_api/s_base.h"
-class ItemStack;
+struct ItemStack;
class ScriptApiDetached
: virtual public ScriptApiBase