From f309fd73a7e6d599c0a4d99e47033ae398bd53f2 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 b813e2f9..90a4e295 100644 --- a/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp +++ b/Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp @@ -98,7 +98,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