From 6ebbf882f39199f5669e94cd0d5a5c46c538aaa3 Mon Sep 17 00:00:00 2001 From: Lynix Date: Tue, 29 Nov 2016 15:57:29 +0100 Subject: [PATCH] Graphics/CullingList: Fix compilation for all major compilers --- include/Nazara/Graphics/CullingList.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;