fixing fresh defect in code generator

This commit is contained in:
rusefi 2019-06-15 21:44:21 -04:00
parent 6dac13a2f8
commit 116897ba63
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -46,7 +46,7 @@ public class TypesHelper {
} }
private static boolean isPrimitive4byte(String type) { private static boolean isPrimitive4byte(String type) {
return type.equals(INT_32_T) || isFloat(type); return type.equals(INT_32_T) || type.equals(UINT_32_T) || isFloat(type);
} }
public static String convertToTs(String type) { public static String convertToTs(String type) {