Fix reference to a pointer in TypeInfo for scripting bindings generation

This commit is contained in:
2021-12-06 16:44:35 +01:00
parent 066207e925
commit 05a37447a7
+4 -4
View File
@@ -122,10 +122,10 @@ namespace Flax.Build.Bindings
}
sb.Append('>');
}
if (IsRef)
sb.Append('&');
if (IsPtr)
sb.Append('*');
if (IsRef)
sb.Append('&');
return sb.ToString();
}
@@ -146,10 +146,10 @@ namespace Flax.Build.Bindings
}
sb.Append('>');
}
if (IsRef)
sb.Append('&');
if (IsPtr)
sb.Append('*');
if (IsRef)
sb.Append('&');
return sb.ToString();
}