Fixed warnings.

This commit is contained in:
David Williams
2015-03-05 00:04:22 +01:00
parent 61bffc9783
commit 89550fcd44
3 changed files with 5 additions and 5 deletions

View File

@ -187,7 +187,7 @@ namespace PolyVox
#if defined(_MSC_VER)
class Sampler : public BaseVolume<VoxelType>::Sampler< PagedVolume<VoxelType> > //This line works on VS2010
#else
class Sampler : public BaseVolume<VoxelType>::template Sampler< PagedVolume<VoxelType> > //This line works on GCC
class Sampler : public BaseVolume<VoxelType>::template Sampler< PagedVolume<VoxelType> > //This line works on GCC
#endif
{
public: