summaryrefslogtreecommitdiff
path: root/src/mapnode.h
diff options
context:
space:
mode:
authorLars Hofhansl <larsh@apache.org>2017-01-04 11:11:55 -0800
committersfan5 <sfan5@live.de>2017-01-04 21:37:29 +0100
commitca3629637cb20cea318b8811e717e2caab579dc0 (patch)
tree76f21d687974e641bfa7ff8795f55f10514b3832 /src/mapnode.h
parentad10b8b762d8097092f307867a36e55049d69546 (diff)
downloadminetest-ca3629637cb20cea318b8811e717e2caab579dc0.tar.gz
minetest-ca3629637cb20cea318b8811e717e2caab579dc0.tar.bz2
minetest-ca3629637cb20cea318b8811e717e2caab579dc0.zip
Fixes for using std:vector in ABMHander and further perf improvements
Diffstat (limited to 'src/mapnode.h')
-rw-r--r--src/mapnode.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mapnode.h b/src/mapnode.h
index a3c20e8ff..ae0245cfe 100644
--- a/src/mapnode.h
+++ b/src/mapnode.h
@@ -143,11 +143,6 @@ struct MapNode
MapNode()
{ }
- MapNode(const MapNode & n)
- {
- *this = n;
- }
-
MapNode(content_t content, u8 a_param1=0, u8 a_param2=0)
: param0(content),
param1(a_param1),