From 152352ebcc2720f2eba656c95e10374b90a3dee2 Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 19 Oct 2016 12:10:40 +0200 Subject: [PATCH] Graphics/CullingList: Fix compilation with GCC/Clang --- include/Nazara/Graphics/CullingList.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Nazara/Graphics/CullingList.hpp b/include/Nazara/Graphics/CullingList.hpp index aee9b61cb..9fe2ba33f 100644 --- a/include/Nazara/Graphics/CullingList.hpp +++ b/include/Nazara/Graphics/CullingList.hpp @@ -22,12 +22,12 @@ namespace Nz class CullingList { public: - template class Entry; + template class Entry; class NoTestEntry; class SphereEntry; class VolumeEntry; - template friend class Entry; + template friend class Entry; friend NoTestEntry; friend SphereEntry; friend VolumeEntry; @@ -109,7 +109,7 @@ namespace Nz }; template - template + template class CullingList::Entry { public: