summaryrefslogtreecommitdiffstats
path: root/src/ForEachChunkProvider.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-28 21:37:31 +0100
committermadmaxoft <github@xoft.cz>2014-03-28 21:37:31 +0100
commit18dad361893e570322531c1ccbd6968082448e19 (patch)
tree43229e1050ebbf0cdf0cfe370808cb29bc515d65 /src/ForEachChunkProvider.h
parentImplemented the msSpongePrint merge strategy. (diff)
parentFixed non-virtual destructors warnings. (diff)
downloadcuberite-18dad361893e570322531c1ccbd6968082448e19.tar
cuberite-18dad361893e570322531c1ccbd6968082448e19.tar.gz
cuberite-18dad361893e570322531c1ccbd6968082448e19.tar.bz2
cuberite-18dad361893e570322531c1ccbd6968082448e19.tar.lz
cuberite-18dad361893e570322531c1ccbd6968082448e19.tar.xz
cuberite-18dad361893e570322531c1ccbd6968082448e19.tar.zst
cuberite-18dad361893e570322531c1ccbd6968082448e19.zip
Diffstat (limited to 'src/ForEachChunkProvider.h')
-rw-r--r--src/ForEachChunkProvider.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ForEachChunkProvider.h b/src/ForEachChunkProvider.h
index 6017173ee..7a6e8c5c6 100644
--- a/src/ForEachChunkProvider.h
+++ b/src/ForEachChunkProvider.h
@@ -24,6 +24,8 @@ class cBlockArea;
class cForEachChunkProvider
{
public:
+ virtual ~cForEachChunkProvider() {}
+
/** Calls the callback for each chunk in the specified range. */
virtual bool ForEachChunkInRect(int a_MinChunkX, int a_MaxChunkX, int a_MinChunkZ, int a_MaxChunkZ, cChunkDataCallback & a_Callback) = 0;