Partially revert commit bef6a7746e9ecf0dc1bec6737273c19c7142ce71 as it was causing complier warnings in Visual Studio.

This commit is contained in:
David Williams 2012-11-24 10:57:51 +01:00
parent 08ceb9df1d
commit 9226337756

View File

@ -189,7 +189,7 @@ namespace PolyVox
SurfaceMesh<PositionMaterialNormal>* m_meshCurrent;
//Information about the region we are currently processing
const Region m_regSizeInVoxels;
Region m_regSizeInVoxels;
Region m_regSizeInCells;
/*Region m_regSizeInVoxelsCropped;
Region m_regSizeInVoxelsUncropped;
@ -201,7 +201,7 @@ namespace PolyVox
Controller m_controller;
//Our threshold value
const typename Controller::DensityType m_tThreshold;
typename Controller::DensityType m_tThreshold;
};
}