Skip to content

Commit

Permalink
ios fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed Nov 15, 2024
1 parent 6b9d644 commit 5e5c87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lumos/Source/Lumos/Core/DataStructures/TDArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 5e5c87d

Please sign in to comment.