Browse Source

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

pull/267/head
Tom Spilman 12 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
case ParameterUsage.Out: case ParameterUsage.Out:
return "out "; return "out ";
case ParameterUsage.InOut: case ParameterUsage.InOut:
return "ref"; return "ref ";
default: default:
return string.Empty; return string.Empty;
} }

Loading…
Cancel
Save