diff options
author | tycho <tycho@hanoverdesktop> | 2014-09-26 18:00:34 +0200 |
---|---|---|
committer | tycho <tycho@hanoverdesktop> | 2014-09-26 18:00:34 +0200 |
commit | ad5d0eda9c35a7f4a00e11743f545d057d188a8c (patch) | |
tree | 61d228ac8fb2bf00635726026bbddc1cb265a5c7 /src/Simulator/RedstoneSimulator.h | |
parent | Merge pull request #1419 from mc-server/redstoneTests (diff) | |
download | cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar.gz cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar.bz2 cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar.lz cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar.xz cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.tar.zst cuberite-ad5d0eda9c35a7f4a00e11743f545d057d188a8c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/RedstoneSimulator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Simulator/RedstoneSimulator.h b/src/Simulator/RedstoneSimulator.h index 0e3dd495d..f6d36f869 100644 --- a/src/Simulator/RedstoneSimulator.h +++ b/src/Simulator/RedstoneSimulator.h @@ -7,10 +7,12 @@ class cRedstoneSimulatorChunkData { public: - virtual ~cRedstoneSimulatorChunkData() {} + virtual ~cRedstoneSimulatorChunkData() = 0; } ; +inline cRedstoneSimulatorChunkData::~cRedstoneSimulatorChunkData() {} + template <class ChunkType, class WorldType> class cRedstoneSimulator : public cSimulator<ChunkType, WorldType> |