summaryrefslogtreecommitdiffstats
path: root/src/LightingThread.h
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-23 21:23:35 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-23 21:23:35 +0100
commit462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1 (patch)
tree319614feeb429ae401d120f458e2555b426cadd4 /src/LightingThread.h
parentUpdated CONTRIBUTING file with formatting and essential rules. (diff)
downloadcuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.gz
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.bz2
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.lz
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.xz
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.zst
cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.zip
Diffstat (limited to 'src/LightingThread.h')
-rw-r--r--src/LightingThread.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/LightingThread.h b/src/LightingThread.h
index 81dd9d61f..72d561348 100644
--- a/src/LightingThread.h
+++ b/src/LightingThread.h
@@ -82,7 +82,11 @@ protected:
cLightingChunkStay(cLightingThread & a_LightingThread, int a_ChunkX, int a_ChunkZ, cChunkCoordCallback * a_CallbackAfter);
protected:
- virtual void OnChunkAvailable(int a_ChunkX, int a_ChunkZ) override {}
+ virtual void OnChunkAvailable(int a_ChunkX, int a_ChunkZ) override
+ {
+ UNUSED(a_ChunkX);
+ UNUSED(a_ChunkZ);
+ }
virtual bool OnAllChunksAvailable(void) override;
virtual void OnDisabled(void) override;
} ;