Customizing the refactoring snippet "Create From Usage Method Body" to Super::$MethodName$($MethodArgs$);
will result in the snippet always expanding to:Super::();
Expected
void AMyClass::TickActor(float DeltaTime, enum ELevelTick TickType, FActorTickFunction& ThisTickFunction)
{
Super::TickActor(DeltaTime, TickType, ThisTickFunction);
}
Actual output
void AMyClass::TickActor(float DeltaTime, enum ELevelTick TickType, FActorTickFunction& ThisTickFunction)
{
Super::();
}
Moving the same thing to another snippet that I trigger via shortcut works correctly.