variant.h: Update comments with numeric enum values
Comments got desynchronized with the actual values of the enum. To avoid anyone making some stupid mistake here, let's fix it as soon as possible.
This commit is contained in:
parent
0e8db63009
commit
110adc80d2
1 changed files with 4 additions and 4 deletions
|
@ -99,15 +99,15 @@ public:
|
||||||
_RID,
|
_RID,
|
||||||
OBJECT,
|
OBJECT,
|
||||||
DICTIONARY,
|
DICTIONARY,
|
||||||
ARRAY, // 20
|
ARRAY,
|
||||||
|
|
||||||
// arrays
|
// arrays
|
||||||
POOL_BYTE_ARRAY,
|
POOL_BYTE_ARRAY, // 20
|
||||||
POOL_INT_ARRAY,
|
POOL_INT_ARRAY,
|
||||||
POOL_REAL_ARRAY,
|
POOL_REAL_ARRAY,
|
||||||
POOL_STRING_ARRAY,
|
POOL_STRING_ARRAY,
|
||||||
POOL_VECTOR2_ARRAY, // 25
|
POOL_VECTOR2_ARRAY,
|
||||||
POOL_VECTOR3_ARRAY,
|
POOL_VECTOR3_ARRAY, // 25
|
||||||
POOL_COLOR_ARRAY,
|
POOL_COLOR_ARRAY,
|
||||||
|
|
||||||
VARIANT_MAX
|
VARIANT_MAX
|
||||||
|
|
Loading…
Reference in a new issue