From 13a3569a0b36912b49d9658dd45af4bfcf69dcdf Mon Sep 17 00:00:00 2001 From: Jamie Greunbaum Date: Tue, 19 Sep 2023 15:46:00 -0400 Subject: [PATCH] Fixed a compiler error that suddenly cropped up by making internal pointers consistently use TObjectPtr. --- Source/ComboInput/Public/Components/ComboManagerComponent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ComboInput/Public/Components/ComboManagerComponent.h b/Source/ComboInput/Public/Components/ComboManagerComponent.h index 47e57ab..58f4267 100644 --- a/Source/ComboInput/Public/Components/ComboManagerComponent.h +++ b/Source/ComboInput/Public/Components/ComboManagerComponent.h @@ -89,8 +89,8 @@ private: void DEBUG__UnlockAction(TObjectPtr Unlock); - const class UComboSequenceNode *ActiveNode = nullptr; - const class UComboSequenceNode *PreviousNode = nullptr; + TObjectPtr ActiveNode = nullptr; + TObjectPtr PreviousNode = nullptr; TObjectPtr LastComboAction = nullptr;