Fix the labels for the Variable types

This commit is contained in:
Pierre Pronchery 2020-03-25 21:17:50 +01:00
parent 5dced389d5
commit 36e95e95d4

View File

@ -44,7 +44,7 @@
/* private */
/* types */
/* XXX get rid of this */
#define VT_LAST VT_STRING
#define VT_LAST VT_COMPOUND
#define VT_COUNT (VT_LAST + 1)
#define AICT_MASK 077
@ -52,7 +52,8 @@
static const String * AICTString[VT_COUNT] =
{
"void", "bool", "int8", "uint8", "int16", "uint16", "int32", "uint32",
"int64", "uint64", "String", "Buffer", "float", "double"
"int64", "uint64", "float", "double", "Buffer", "String", "Array",
"Compound"
};
#endif