Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ILRuntime/Runtime/Enviorment/CrossBindingCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ static void GenerateCrossBindingMethodClass(StringBuilder sb, string funcName, i
sb.AppendLine(" }");
if (hasReturn)
sb.AppendLine(@" else
return default(TResult);");
return default;");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unity2018以前的版本不支持default关键字,只支持default(T)

sb.AppendLine(@" }

public override void Invoke(ILTypeInstance instance)
Expand Down