Browse Source

Throw NotImplementedException instead of silently returning false when not able to handle type printing of primitive types in C# backend.

pull/28/head
triton 12 years ago
parent
commit
5c34245276
  1. 2
      src/Generator/Generators/CSharp/CSharpMarshal.cs

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

@ -171,7 +171,7 @@ namespace CppSharp.Generators.CSharp @@ -171,7 +171,7 @@ namespace CppSharp.Generators.CSharp
return false;
}
return false;
throw new NotImplementedException();
}
public override bool VisitTypedefType(TypedefType typedef, TypeQualifiers quals)

Loading…
Cancel
Save