diff --git a/src/Generator/Types/CppTypePrinter.cs b/src/Generator/Types/CppTypePrinter.cs index 63b0cffe..9e084752 100644 --- a/src/Generator/Types/CppTypePrinter.cs +++ b/src/Generator/Types/CppTypePrinter.cs @@ -38,6 +38,7 @@ namespace CppSharp.Types return string.Format("{0}[{1}]", typeName, array.Size); case ArrayType.ArraySize.Variable: case ArrayType.ArraySize.Dependent: + case ArrayType.ArraySize.Incomplete: return string.Format("{0}[]", typeName); }