Add 'typename' where necessary

This fixes the compilation on Linux after the
template template parameter removals.
This commit is contained in:
Matt Williams
2012-06-14 23:07:42 +02:00
parent 71b884e97b
commit 06439a71bd
8 changed files with 78 additions and 78 deletions

View File

@ -26,7 +26,7 @@ freely, subject to the following restrictions:
namespace PolyVox
{
template<>
typename VoxelTypeTraits<Density8>::DensityType convertToDensity(Density8 voxel)
VoxelTypeTraits<Density8>::DensityType convertToDensity(Density8 voxel)
{
return voxel.getDensity();
}