From ecd42704a610f2fc063162674ca580bb5420ca1d Mon Sep 17 00:00:00 2001 From: Lynix Date: Sat, 19 Jan 2019 02:21:29 +0100 Subject: [PATCH] Remove MSVC-specific fix --- include/Nazara/Graphics/CullingList.inl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/Nazara/Graphics/CullingList.inl b/include/Nazara/Graphics/CullingList.inl index 5e924d013..341508351 100644 --- a/include/Nazara/Graphics/CullingList.inl +++ b/include/Nazara/Graphics/CullingList.inl @@ -408,12 +408,7 @@ namespace Nz template template - #ifdef NAZARA_COMPILER_MSVC - // MSVC bug - typename CullingList::Entry& CullingList::Entry::operator=(Entry&& entry) - #else typename CullingList::template Entry& CullingList::Entry::operator=(Entry&& entry) - #endif { m_index = entry.m_index; m_parent = entry.m_parent;