Codestyle fix for #2214
This commit is contained in:
@@ -1955,7 +1955,7 @@ namespace Flax.Build.Bindings
|
||||
var paramsCount = eventInfo.Type.GenericArgs?.Count ?? 0;
|
||||
CppIncludeFiles.Add("Engine/Profiler/ProfilerCPU.h");
|
||||
var bindPrefix = eventInfo.IsStatic ? classTypeNameNative + "::" : "__obj->";
|
||||
//eventInfo.
|
||||
|
||||
if (useCSharp)
|
||||
{
|
||||
// C# event invoking wrapper (calls C# event from C++ delegate)
|
||||
@@ -1970,7 +1970,7 @@ namespace Flax.Build.Bindings
|
||||
{
|
||||
if (i != 0)
|
||||
contents.Append(", ");
|
||||
contents.Append(eventInfo.Type.GenericArgs[i].GetFullNameNative(buildData,classInfo)).Append(" arg" + i);
|
||||
contents.Append(eventInfo.Type.GenericArgs[i].GetFullNameNative(buildData, classInfo)).Append(" arg" + i);
|
||||
}
|
||||
contents.Append(')').AppendLine();
|
||||
contents.Append(" {").AppendLine();
|
||||
|
||||
Reference in New Issue
Block a user