From 8bfbbefdd82c92a70e4ea3bc56f77363b710a880 Mon Sep 17 00:00:00 2001 From: David Gilbert <gilbert@vr.rwth-aachen.de> Date: Mon, 13 May 2024 13:51:26 +0200 Subject: [PATCH] style(interaction): fixes clang-formatting error --- .../Interaction/Interactables/IntenSelect/IntenSelectable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp b/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp index 04c65616..5e3ae11c 100644 --- a/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp +++ b/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp @@ -95,7 +95,7 @@ void UIntenSelectable::InitDefaultBehaviourReferences() // Scoring TSet<UActorComponent*> AllComponents = GetOwner()->GetComponents(); - for (UActorComponent * c : AllComponents) + for (UActorComponent* c : AllComponents) { if (UIntenSelectableScoring* TryToGetScoring = Cast<UIntenSelectableScoring>(c)) { -- GitLab