Graphics/CullingList: Fix compilation with GCC/Clang
This commit is contained in:
parent
725dc6cdbc
commit
152352ebcc
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue