I changed the order in the constructor initializer list and now it goes through
Editor/GraphEditor/Private/SGraphPin.cpp
Original that fails compilation due to -Wreorder
SGraphPin::SGraphPin()
: bShowLabel(true)
, bIsMovingLinks(false)
, PinColorModifier(FLinearColor::White)
, CachedNodeOffset(FVector2D::ZeroVector)
, GraphPinObj(nullptr)
This one compiles without warning. I will create a pull request with this fix.
SGraphPin::SGraphPin()
: GraphPinObj(nullptr)
, bShowLabel(true)
, bIsMovingLinks(false)
, PinColorModifier(FLinearColor::White)
, CachedNodeOffset(FVector2D::ZeroVector)