Fix some compiler warnings about initialisation order.

This commit is contained in:
Matt Williams
2012-06-20 23:56:37 +01:00
parent 9fdc30643a
commit 11f91fbbc4
4 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ namespace PolyVox
{
template <typename VoxelType>
Block<VoxelType>::Block(uint16_t uSideLength)
:m_uSideLength(0)
:m_tUncompressedData(0)
,m_uSideLength(0)
,m_uSideLengthPower(0)
,m_tUncompressedData(0)
,m_bIsCompressed(true)
,m_bIsUncompressedDataModified(true)
{