From 7b126a97f7222b6234bfb447dbee737a28dec2ed Mon Sep 17 00:00:00 2001 From: David Williams Date: Fri, 9 Dec 2011 17:27:52 +0100 Subject: [PATCH] GCC compile fix. --- library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl b/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl index c5ad68b6..e5c4c261 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/LowPassFilter.inl @@ -248,7 +248,7 @@ namespace PolyVox VoxelType voxel = m_pVolSrc->getVoxelAt(iDstX, iDstY, iDstZ); - voxel.setDensity(static_cast(average)); + voxel.setDensity(static_cast(average)); m_pVolDst->setVoxelAt(iDstX, iDstY, iDstZ, voxel);