From 7e08ea97d88e3d510a7d7211755dde1a4d0b074a Mon Sep 17 00:00:00 2001 From: Moth Doctor Date: Wed, 24 Mar 2021 17:29:32 +0100 Subject: [PATCH] Clang compilation fixes --- .../Private/Graph/Customizations/FlowNode_CustomInputDetails.h | 2 ++ .../Private/Graph/Customizations/FlowNode_CustomOutputDetails.h | 2 ++ Source/FlowEditor/Public/Asset/FlowAssetEditor.h | 1 + Source/FlowEditor/Public/FlowEditorCommands.h | 2 ++ 4 files changed, 7 insertions(+) diff --git a/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomInputDetails.h b/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomInputDetails.h index efa07726..3f3cbd35 100644 --- a/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomInputDetails.h +++ b/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomInputDetails.h @@ -1,6 +1,8 @@ #pragma once #include "IDetailCustomization.h" +#include "Templates/SharedPointer.h" +#include "Widgets/SWidget.h" class FFlowNode_CustomInputDetails final : public IDetailCustomization { diff --git a/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomOutputDetails.h b/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomOutputDetails.h index 726d8df5..982f795b 100644 --- a/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomOutputDetails.h +++ b/Source/FlowEditor/Private/Graph/Customizations/FlowNode_CustomOutputDetails.h @@ -1,6 +1,8 @@ #pragma once #include "IDetailCustomization.h" +#include "Templates/SharedPointer.h" +#include "Widgets/SWidget.h" class FFlowNode_CustomOutputDetails final : public IDetailCustomization { diff --git a/Source/FlowEditor/Public/Asset/FlowAssetEditor.h b/Source/FlowEditor/Public/Asset/FlowAssetEditor.h index fde1751e..727024f8 100644 --- a/Source/FlowEditor/Public/Asset/FlowAssetEditor.h +++ b/Source/FlowEditor/Public/Asset/FlowAssetEditor.h @@ -15,6 +15,7 @@ class IDetailsView; class SDockableTab; class SGraphEditor; class UEdGraphNode; +struct FSlateBrush; struct FPropertyChangedEvent; struct Rect; diff --git a/Source/FlowEditor/Public/FlowEditorCommands.h b/Source/FlowEditor/Public/FlowEditorCommands.h index f4429ce9..9f304599 100644 --- a/Source/FlowEditor/Public/FlowEditorCommands.h +++ b/Source/FlowEditor/Public/FlowEditorCommands.h @@ -2,6 +2,8 @@ #include "EdGraph/EdGraphSchema.h" #include "Framework/Commands/Commands.h" +#include "Framework/Commands/UICommandInfo.h" +#include "Templates/SharedPointer.h" class FFlowToolbarCommands final : public TCommands {