Fixing returning a copy

This commit is contained in:
bernatx 2022-07-20 11:04:04 +02:00 committed by bernat
parent fc0765a02a
commit 3595663c9e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ void AOpticalFlowCamera::PostPhysTick(UWorld *World, ELevelTick TickType, float
IntermediateBuffer.Add(y);
++Buf;
}
return std::move(IntermediateBuffer);
return IntermediateBuffer;
};
FPixelReader::SendPixelsInRenderThread<AOpticalFlowCamera, float>(*this, true, Conversor);