You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think a line in HoudiniEditorUnitTestUtils.h hade been misplaced.
classFHoudiniLatentTestCommand : publicFFunctionLatentCommand
{
public:// Each part of an HDA that requires a Cook should be its own FFunctionLatentCommand. Before the Update()// function is called this class ensures the previous cook completed.FHoudiniLatentTestCommand(TSharedPtr<FHoudiniTestContext> InContext, TFunction<bool()> InLatentPredicate)
: FFunctionLatentCommand(InLatentPredicate), Context(InContext) {}
TSharedPtr<FHoudiniTestContext> Context;
// Like its base class, return true when the command is complete, false when it should be called again.virtualboolUpdate() override;
};
#if WITH_DEV_AUTOMATION_TESTS
#endif
#if WITH_DEV_AUTOMATION_TESTS needs to come before FHoudiniLatentTestCommand is defined.
Not critical as I can just change it here for now.