Skip to content

Commit

Permalink
compilaton fixed against recent engine's code
Browse files Browse the repository at this point in the history
  • Loading branch information
MothDoctor committed Nov 27, 2021
1 parent c808530 commit dbcea32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/FlowEditor/Private/Graph/Nodes/FlowGraphNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ void UFlowGraphNode::RemoveOrphanedPin(UEdGraphPin* Pin)

PinBreakpoints.Remove(Pin);

Pin->MarkPendingKill();
Pin->MarkAsGarbage();
Pins.Remove(Pin);

ReconstructNode();
Expand Down Expand Up @@ -833,7 +833,7 @@ void UFlowGraphNode::RemoveInstancePin(UEdGraphPin* Pin)
InputPins.Remove(Pin);
FlowNode->RemoveUserInput();

Pin->MarkPendingKill();
Pin->MarkAsGarbage();
Pins.Remove(Pin);
}
}
Expand All @@ -844,7 +844,7 @@ void UFlowGraphNode::RemoveInstancePin(UEdGraphPin* Pin)
OutputPins.Remove(Pin);
FlowNode->RemoveUserOutput();

Pin->MarkPendingKill();
Pin->MarkAsGarbage();
Pins.Remove(Pin);
}
}
Expand Down

0 comments on commit dbcea32

Please sign in to comment.