From 92263377564be06c8b6588799a62c837026cf359 Mon Sep 17 00:00:00 2001 From: David Williams Date: Sat, 24 Nov 2012 10:57:51 +0100 Subject: [PATCH] Partially revert commit bef6a7746e9ecf0dc1bec6737273c19c7142ce71 as it was causing complier warnings in Visual Studio. --- .../include/PolyVoxCore/MarchingCubesSurfaceExtractor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/PolyVoxCore/include/PolyVoxCore/MarchingCubesSurfaceExtractor.h b/library/PolyVoxCore/include/PolyVoxCore/MarchingCubesSurfaceExtractor.h index 4726a198..b0d7c694 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/MarchingCubesSurfaceExtractor.h +++ b/library/PolyVoxCore/include/PolyVoxCore/MarchingCubesSurfaceExtractor.h @@ -189,7 +189,7 @@ namespace PolyVox SurfaceMesh* 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; }; }