summaryrefslogtreecommitdiffstats
path: root/src/Item.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-05-01 22:16:29 +0200
committermadmaxoft <github@xoft.cz>2014-05-01 22:16:29 +0200
commit4a952717904436cc92a31505149d1729e2994b68 (patch)
treed21b857cce4dbac162a597400ab27331a69f1263 /src/Item.h
parentAdded a missing return statement. (diff)
parentMerge pull request #973 from mc-server/ItemNoCopyConstructor (diff)
downloadcuberite-4a952717904436cc92a31505149d1729e2994b68.tar
cuberite-4a952717904436cc92a31505149d1729e2994b68.tar.gz
cuberite-4a952717904436cc92a31505149d1729e2994b68.tar.bz2
cuberite-4a952717904436cc92a31505149d1729e2994b68.tar.lz
cuberite-4a952717904436cc92a31505149d1729e2994b68.tar.xz
cuberite-4a952717904436cc92a31505149d1729e2994b68.tar.zst
cuberite-4a952717904436cc92a31505149d1729e2994b68.zip
Diffstat (limited to 'src/Item.h')
-rw-r--r--src/Item.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Item.h b/src/Item.h
index 641c681db..8eb0a1f4e 100644
--- a/src/Item.h
+++ b/src/Item.h
@@ -73,6 +73,10 @@ public:
}
+ // The constructor is disabled in code, because the compiler generates it anyway,
+ // but it needs to stay because ToLua needs to generate the binding for it
+ #if 0
+
/** Creates an exact copy of the item */
cItem(const cItem & a_CopyFrom) :
m_ItemType (a_CopyFrom.m_ItemType),
@@ -85,6 +89,8 @@ public:
{
}
+ #endif
+
void Empty(void)
{