diff --git a/Code/core/include/Allocator.hpp b/Code/core/include/Allocator.hpp index f0b9b6f..57dc8e7 100644 --- a/Code/core/include/Allocator.hpp +++ b/Code/core/include/Allocator.hpp @@ -191,11 +191,11 @@ namespace TiltedPhoques { if constexpr (details::has_allocator>) { - apEntry->GetAllocator()->Delete(apEntry); + apEntry->GetAllocator()->template Delete(apEntry); } else { - Allocator::GetDefault()->Delete(apEntry); + Allocator::GetDefault()->template Delete(apEntry); } } }