summaryrefslogtreecommitdiff
path: root/src/server.h
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-07-25 08:39:42 +0200
committerLoic Blot <loic.blot@unix-experience.fr>2017-07-25 08:47:52 +0200
commit31b84ce1f2c4f9c6264f32427c3e7be1215360f1 (patch)
treef7206d06b0b69d0b05ecf93f96a3259f6fe245b9 /src/server.h
parent4a4eba7a6c513d0b86bcabdf5882e8031c8f07ac (diff)
downloadminetest-31b84ce1f2c4f9c6264f32427c3e7be1215360f1.tar.gz
minetest-31b84ce1f2c4f9c6264f32427c3e7be1215360f1.tar.bz2
minetest-31b84ce1f2c4f9c6264f32427c3e7be1215360f1.zip
Move MapEditEventAreaIgnorer to emerge.cpp
It's only used in emerge threads and it's a local object, don't expose it to the whole Minetest
Diffstat (limited to 'src/server.h')
-rw-r--r--src/server.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/server.h b/src/server.h
index fff7f9b6a..ac7ba4f61 100644
--- a/src/server.h
+++ b/src/server.h
@@ -65,31 +65,6 @@ enum ClientDeletionReason {
CDR_DENY
};
-class MapEditEventAreaIgnorer
-{
-public:
- MapEditEventAreaIgnorer(VoxelArea *ignorevariable, const VoxelArea &a):
- m_ignorevariable(ignorevariable)
- {
- if(m_ignorevariable->getVolume() == 0)
- *m_ignorevariable = a;
- else
- m_ignorevariable = NULL;
- }
-
- ~MapEditEventAreaIgnorer()
- {
- if(m_ignorevariable)
- {
- assert(m_ignorevariable->getVolume() != 0);
- *m_ignorevariable = VoxelArea();
- }
- }
-
-private:
- VoxelArea *m_ignorevariable;
-};
-
struct MediaInfo
{
std::string path;