We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 925783a commit c7db119Copy full SHA for c7db119
src/Generator/Generators/C/CppMarshal.cs
@@ -464,11 +464,12 @@ public bool VisitPrimitiveType(PrimitiveType primitive)
464
case PrimitiveType.ULongLong:
465
case PrimitiveType.Float:
466
case PrimitiveType.Double:
467
+ case PrimitiveType.WideChar:
468
Context.Return.Write(Context.Parameter.Name);
469
return true;
470
+ default:
471
+ throw new NotImplementedException();
472
}
-
- return false;
473
474
475
public override bool VisitTypedefType(TypedefType typedef, TypeQualifiers quals)
0 commit comments