From 89431f9c4f0ff08f059c05a87fa93d50807b3f71 Mon Sep 17 00:00:00 2001 From: Lynix Date: Wed, 19 Oct 2016 15:51:20 +0200 Subject: [PATCH] Graphics/CullingList: Fix some compilation errors --- include/Nazara/Graphics/CullingList.inl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/Nazara/Graphics/CullingList.inl b/include/Nazara/Graphics/CullingList.inl index 617ccfbfc..ecd414ea4 100644 --- a/include/Nazara/Graphics/CullingList.inl +++ b/include/Nazara/Graphics/CullingList.inl @@ -372,13 +372,13 @@ namespace Nz template CullingList::NoTestEntry::NoTestEntry() : - Entry() + Entry() { } template CullingList::NoTestEntry::NoTestEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } @@ -386,40 +386,40 @@ namespace Nz template CullingList::SphereEntry::SphereEntry() : - Entry() + Entry() { } template CullingList::SphereEntry::SphereEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } template void CullingList::SphereEntry::UpdateSphere(const Spheref& sphere) { - m_parent->NotifySphereUpdate(m_index, sphere); + this->m_parent->NotifySphereUpdate(this->m_index, sphere); } ////////////////////////////////////////////////////////////////////////// template CullingList::VolumeEntry::VolumeEntry() : - Entry() + Entry() { } template CullingList::VolumeEntry::VolumeEntry(CullingList* parent, std::size_t index) : - Entry(parent, index) + Entry(parent, index) { } template - void Nz::CullingList::VolumeEntry::UpdateVolume(const BoundingVolumef& volume) + void CullingList::VolumeEntry::UpdateVolume(const BoundingVolumef& volume) { - m_parent->NotifyVolumeUpdate(m_index, volume); + this->m_parent->NotifyVolumeUpdate(this->m_index, volume); } }