Graphics/CullingList: Fix compilation for all major compilers
This commit is contained in:
parent
3c5594c206
commit
6ebbf882f3
|
|
@ -135,7 +135,7 @@ namespace Nz
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
class CullingList<T>::NoTestEntry : public CullingList::Entry<CullTest::NoTest>
|
class CullingList<T>::NoTestEntry : public CullingList::template Entry<CullTest::NoTest>
|
||||||
{
|
{
|
||||||
friend CullingList;
|
friend CullingList;
|
||||||
|
|
||||||
|
|
@ -147,13 +147,13 @@ namespace Nz
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
class CullingList<T>::SphereEntry : public CullingList::Entry<CullTest::Sphere>
|
class CullingList<T>::SphereEntry : public CullingList::template Entry<CullTest::Sphere>
|
||||||
{
|
{
|
||||||
friend CullingList;
|
friend CullingList;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SphereEntry();
|
SphereEntry();
|
||||||
|
|
||||||
void UpdateSphere(const Spheref& sphere);
|
void UpdateSphere(const Spheref& sphere);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
@ -161,7 +161,7 @@ namespace Nz
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
class CullingList<T>::VolumeEntry : public CullingList::Entry<CullTest::Volume>
|
class CullingList<T>::VolumeEntry : public CullingList::template Entry<CullTest::Volume>
|
||||||
{
|
{
|
||||||
friend CullingList;
|
friend CullingList;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue