From 8a66bd74cf5edb3038e02b3a30483aa8a89aa30a Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 13 Jul 2021 15:40:58 +0200 Subject: [PATCH] Tweak --- Source/Engine/Graphics/Textures/TextureBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { }