From f87966686dbd2430d81371263f3ce1ecabfb885e Mon Sep 17 00:00:00 2001 From: David Williams Date: Tue, 10 Feb 2015 21:52:05 +0100 Subject: [PATCH] Another 'typename', GCC really likes these. --- tests/TestCubicSurfaceExtractor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCubicSurfaceExtractor.cpp b/tests/TestCubicSurfaceExtractor.cpp index 5833eba1..88e9b746 100644 --- a/tests/TestCubicSurfaceExtractor.cpp +++ b/tests/TestCubicSurfaceExtractor.cpp @@ -84,7 +84,7 @@ VolumeType* createAndFillVolumeWithNoise(int32_t iVolumeSideLength, typename Vol else { // Otherwise we write random voxel values between zero and the requested maximum - VolumeType::VoxelType voxelValue = static_cast(dist(rng)); + typename VolumeType::VoxelType voxelValue = static_cast(dist(rng)); volData->setVoxelAt(x, y, z, static_cast(voxelValue)); } }