Graphics/CullingList: Fix compilation with GCC/Clang

This commit is contained in:
Lynix 2016-10-19 12:10:40 +02:00
parent 725dc6cdbc
commit 152352ebcc
1 changed files with 3 additions and 3 deletions

View File

@ -22,12 +22,12 @@ namespace Nz
class CullingList class CullingList
{ {
public: public:
template<CullTest T> class Entry; template<CullTest> class Entry;
class NoTestEntry; class NoTestEntry;
class SphereEntry; class SphereEntry;
class VolumeEntry; class VolumeEntry;
template<CullTest T> friend class Entry; template<CullTest> friend class Entry;
friend NoTestEntry; friend NoTestEntry;
friend SphereEntry; friend SphereEntry;
friend VolumeEntry; friend VolumeEntry;
@ -109,7 +109,7 @@ namespace Nz
}; };
template<typename T> template<typename T>
template<typename CullTest Type> template<CullTest Type>
class CullingList<T>::Entry class CullingList<T>::Entry
{ {
public: public: