Compile fix.

This commit is contained in:
David Williams 2016-02-07 10:00:07 +00:00
parent 98cce0ea26
commit fe2c29e013

View File

@ -125,6 +125,7 @@ namespace PolyVox
uint32_t BaseVolume<VoxelType>::calculateSizeInBytes(void) uint32_t BaseVolume<VoxelType>::calculateSizeInBytes(void)
{ {
POLYVOX_THROW(not_implemented, "You should never call the base class version of this function."); POLYVOX_THROW(not_implemented, "You should never call the base class version of this function.");
return 0;
} }
} }