Skip to content

Commit e826102

Browse files
committed
Fix: CI error
1 parent a7e3602 commit e826102

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Kdtree/Source/Kdtree/Private/KdtreeInternal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ void CollectFromKdtree(const FKdtreeInternal& Tree, const FKdtreeNode* Node, con
264264
CollectFromKdtree(Tree, Node->ChildRight, Box, Result);
265265
}
266266
}
267-
} // namespace
267+
} // namespace
268268

269269
void BuildKdtree(FKdtreeInternal* Tree, const TArray<FVector>& Data)
270270
{

Kdtree/Source/Kdtree/Public/AsyncKdtreeBPLibrary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class KDTREE_API UAsyncKdtreeBPLibrary : public UBlueprintFunctionLibrary
3939
UFUNCTION(BlueprintCallable,
4040
meta = (WorldContextObject = "WorldContextObject", Latent, LatentInfo = "LatentInfo", HidePin = "WorldContextObject",
4141
DefaultToSelf = "WorldContextObject"),
42-
Category = "SpacialDataStructure|kd-tree", DisplayName= "Collect From Kdtree Async (Box)")
42+
Category = "SpacialDataStructure|kd-tree", DisplayName = "Collect From Kdtree Async (Box)")
4343
static void CollectFromKdtreeAsyncBox(const UObject* WorldContextObject, const FKdtree& Tree, const FBox Box,
4444
TArray<int>& Indices, TArray<FVector>& Data, FLatentActionInfo LatentInfo);
4545
};

0 commit comments

Comments
 (0)