diff --git a/include/Nazara/Graphics/CullingList.hpp b/include/Nazara/Graphics/CullingList.hpp index 9fe2ba33f..f8c50d83d 100644 --- a/include/Nazara/Graphics/CullingList.hpp +++ b/include/Nazara/Graphics/CullingList.hpp @@ -135,7 +135,7 @@ namespace Nz }; template - class CullingList::NoTestEntry : public CullingList::Entry + class CullingList::NoTestEntry : public CullingList::template Entry { friend CullingList; @@ -147,13 +147,13 @@ namespace Nz }; template - class CullingList::SphereEntry : public CullingList::Entry + class CullingList::SphereEntry : public CullingList::template Entry { friend CullingList; public: SphereEntry(); - + void UpdateSphere(const Spheref& sphere); private: @@ -161,7 +161,7 @@ namespace Nz }; template - class CullingList::VolumeEntry : public CullingList::Entry + class CullingList::VolumeEntry : public CullingList::template Entry { friend CullingList;