Removed remaining uses of template template parameters.

This commit is contained in:
unknown
2012-06-12 16:38:51 +02:00
parent fcefe27192
commit 71b884e97b
5 changed files with 53 additions and 53 deletions

View File

@ -25,8 +25,8 @@ freely, subject to the following restrictions:
namespace PolyVox
{
template< template<typename> class VolumeType>
float computeSmoothedVoxel(typename VolumeType<uint8_t>::Sampler& volIter)
template< typename VolumeType >
float computeSmoothedVoxel(typename VolumeType::Sampler& volIter)
{
float sum = 0.0;