diff --git a/Source/Engine/Graphics/Textures/TextureBase.cpp b/Source/Engine/Graphics/Textures/TextureBase.cpp index d9aa392cf..2f68b4956 100644 --- a/Source/Engine/Graphics/Textures/TextureBase.cpp +++ b/Source/Engine/Graphics/Textures/TextureBase.cpp @@ -31,7 +31,7 @@ TextureMipData::TextureMipData(TextureMipData&& other) noexcept : RowPitch(other.RowPitch) , DepthPitch(other.DepthPitch) , Lines(other.Lines) - , Data(std::move(other.Data)) + , Data(MoveTemp(other.Data)) { }