Skip to content

Commit

Permalink
Fix build error with "/std:c++20" (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
pladux authored Sep 11, 2023
1 parent bd0c6ee commit 7b06666
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ TArray<TSharedPtr<FQuickCommandEntry>> UReflectionFunctionsExtension::GetCommand
FunctionEntry->Tooltip = FText::FromString(Function->GetDesc());
FunctionEntry->Icon = FSlateIcon(FAppStyle::GetAppStyleSetName(), "Kismet.AllClasses.FunctionIcon");
FunctionEntry->ExecuteCallback = FSimpleDelegate::CreateLambda(
[=]()
[=, this]()
{
ProcessEvent(Function, nullptr);
}
Expand All @@ -38,4 +38,4 @@ TArray<TSharedPtr<FQuickCommandEntry>> UReflectionFunctionsExtension::GetCommand
void UReflectionFunctionsExtension::ExampleFunction()
{
UE_LOG(LogTemp, Log, TEXT("Example function executed"));
}
}

0 comments on commit 7b06666

Please sign in to comment.