fixing fresh defect in code generator
This commit is contained in:
parent
aefb45cf6c
commit
3632f5f787
Binary file not shown.
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue