diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-10-20 22:37:33 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 22:37:33 +0700 |
commit | 64337b82090d696e752d2bcb68f3d0efd5a3fe5b (patch) | |
tree | bd8689bacd51942ded4cdb34beebb051b835452f | |
parent | fd4c907a3544049b1693395bbabb94a9ee3f8658 (diff) | |
parent | 110adc80d2386d2f884b0da511401c94e9c97026 (diff) |
Merge pull request #12255 from dos1/patch-1
variant.h: Update comments with numeric enum values
-rw-r--r-- | core/variant.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/variant.h b/core/variant.h index e0d0bf05c8..45066af401 100644 --- a/core/variant.h +++ b/core/variant.h @@ -99,15 +99,15 @@ public: _RID, OBJECT, DICTIONARY, - ARRAY, // 20 + ARRAY, // arrays - POOL_BYTE_ARRAY, + POOL_BYTE_ARRAY, // 20 POOL_INT_ARRAY, POOL_REAL_ARRAY, POOL_STRING_ARRAY, - POOL_VECTOR2_ARRAY, // 25 - POOL_VECTOR3_ARRAY, + POOL_VECTOR2_ARRAY, + POOL_VECTOR3_ARRAY, // 25 POOL_COLOR_ARRAY, VARIANT_MAX |