Dataflow : Fix CIS

- Removed nullptr assignment to UniquePtr.
#rb none
#jira UE-170449
#preflight 637679f5e135d3e9ce6f0d22

[CL 23182591 by brice criswell in ue5-main branch]
This commit is contained in:
brice criswell
2022-11-17 15:29:38 -05:00
parent ac642e3ace
commit 5bfdf24efd

View File

@@ -95,6 +95,6 @@ private:
bool bRenderMesh = false;
TArray<uint32> IndexBuffer;
TArray<FDynamicMeshVertex> VertexBuffer;
TUniquePtr<FDynamicMeshBuilder> MeshBuilder = nullptr;
TUniquePtr<FDynamicMeshBuilder> MeshBuilder;
};