From 5e5c87df65767af2a4b06189e5eb7229ee6a0da2 Mon Sep 17 00:00:00 2001 From: jmorton06 Date: Fri, 15 Nov 2024 08:06:45 +0000 Subject: [PATCH] ios fix --- Lumos/Source/Lumos/Core/DataStructures/TDArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lumos/Source/Lumos/Core/DataStructures/TDArray.h b/Lumos/Source/Lumos/Core/DataStructures/TDArray.h index a49a7cee..338ef886 100644 --- a/Lumos/Source/Lumos/Core/DataStructures/TDArray.h +++ b/Lumos/Source/Lumos/Core/DataStructures/TDArray.h @@ -422,7 +422,7 @@ namespace Lumos // Compare with the last written element if (!compare(m_Data[readIndex], m_Data[writeIndex - 1])) { - m_Data[writeIndex] = std::move(m_Data[readIndex]); + m_Data[writeIndex] = Move(m_Data[readIndex]); ++writeIndex; } }