Browse Source

Fixed InOut parameter bug where there was no space between the ref and the type.

pull/267/head
Tom Spilman 11 years ago
parent
commit
209aeafe76
  1. 2
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

2
src/Generator/Generators/CSharp/CSharpTextTemplate.cs

@ -2503,7 +2503,7 @@ namespace CppSharp.Generators.CSharp @@ -2503,7 +2503,7 @@ namespace CppSharp.Generators.CSharp
case ParameterUsage.Out:
return "out ";
case ParameterUsage.InOut:
return "ref";
return "ref ";
default:
return string.Empty;
}

Loading…
Cancel
Save