Fixing returning a copy
This commit is contained in:
parent
fc0765a02a
commit
3595663c9e
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue