diff options
Diffstat (limited to 'modules/mono/glue/cs_files/DebuggingUtils.cs')
-rw-r--r-- | modules/mono/glue/cs_files/DebuggingUtils.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/cs_files/DebuggingUtils.cs b/modules/mono/glue/cs_files/DebuggingUtils.cs index a654c9b268..b27816084e 100644 --- a/modules/mono/glue/cs_files/DebuggingUtils.cs +++ b/modules/mono/glue/cs_files/DebuggingUtils.cs @@ -47,7 +47,7 @@ namespace Godot sb.Append("<"); - for (var j = 0; j < genericParams.Length; j++) + for (int j = 0; j < genericParams.Length; j++) { if (j > 0) sb.Append(", "); @@ -64,7 +64,7 @@ namespace Godot ParameterInfo[] parameter = methodBase.GetParameters(); - for (var i = 0; i < parameter.Length; i++) + for (int i = 0; i < parameter.Length; i++) { if (i > 0) sb.Append(", "); |