Documentation tweaks.

This commit is contained in:
David Williams
2016-01-03 18:04:07 +00:00
parent c0b72b6a55
commit 75a2831ae7
3 changed files with 14 additions and 4 deletions

View File

@ -119,12 +119,12 @@ namespace PolyVox
}
////////////////////////////////////////////////////////////////////////////////
/// Note: This function needs reviewing for accuracy...
///
////////////////////////////////////////////////////////////////////////////////
template <typename VoxelType>
uint32_t BaseVolume<VoxelType>::calculateSizeInBytes(void)
{
return this->getWidth() * this->getHeight() * this->getDepth() * sizeof(VoxelType);
POLYVOX_THROW(not_implemented, "You should never call the base class version of this function.");
}
}