This commit is contained in:
Wojtek Figat
2021-07-13 15:40:58 +02:00
parent 7c96961e92
commit 8a66bd74cf

View File

@@ -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))
{
}