diff options
author | Kahrl <kahrl@gmx.net> | 2013-06-06 22:57:38 +0200 |
---|---|---|
committer | Kahrl <kahrl@gmx.net> | 2013-06-06 22:57:38 +0200 |
commit | 773471750dbea73431934ac3736c23564da986b5 (patch) | |
tree | 612c520d341f0672a11f69d0118ac51ba368492a /src/script/cpp_api/s_item.h | |
parent | 6b3e553dd5ca7f31a5e9fc68a3b7f3b59b85e511 (diff) | |
download | minetest-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_item.h')
-rw-r--r-- | src/script/cpp_api/s_item.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/cpp_api/s_item.h b/src/script/cpp_api/s_item.h index 28ac444f6..0f2b16042 100644 --- a/src/script/cpp_api/s_item.h +++ b/src/script/cpp_api/s_item.h @@ -23,10 +23,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "cpp_api/s_base.h" #include "irr_v3d.h" -class PointedThing; -class ItemStack; +struct PointedThing; +struct ItemStack; class ServerActiveObject; -class ItemDefinition; +struct ItemDefinition; class LuaItemStack; class ModApiItemMod; |