Skip to content

Commit

Permalink
Linux fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegmd committed Jan 23, 2021
1 parent ebcdc1c commit 4227052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/core/include/Allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ namespace TiltedPhoques
{
if constexpr (details::has_allocator<std::remove_all_extents_t<T>>)
{
apEntry->GetAllocator()->Delete<T>(apEntry);
apEntry->GetAllocator()->template Delete<T>(apEntry);
}
else
{
Allocator::GetDefault()->Delete<T>(apEntry);
Allocator::GetDefault()->template Delete<T>(apEntry);
}
}
}

0 comments on commit 4227052

Please sign in to comment.