Browse Source

Fixed alias of signed char cannot be marshaled

pull/1572/head
ElonH 5 years ago committed by João Matos
parent
commit
79c927d329
  1. 1
      src/Generator/Generators/CLI/CLIMarshal.cs

1
src/Generator/Generators/CLI/CLIMarshal.cs

@ -581,6 +581,7 @@ namespace CppSharp.Generators.CLI @@ -581,6 +581,7 @@ namespace CppSharp.Generators.CLI
return true;
case PrimitiveType.Bool:
case PrimitiveType.Char:
case PrimitiveType.SChar:
case PrimitiveType.UChar:
case PrimitiveType.Short:
case PrimitiveType.UShort:

Loading…
Cancel
Save