Fix expected type of enum values in reflection tables (#4944)

Fixes #4930
This commit is contained in:
Michael Edwards
2018-10-08 23:29:29 +02:00
committed by Wouter van Oortmerssen
parent a4c362a1ba
commit a4f9d1bfcc
7 changed files with 15 additions and 15 deletions

View File

@@ -704,7 +704,7 @@ inline const flatbuffers::TypeTable *Vec3TypeTable() {
{ flatbuffers::ET_FLOAT, 0, -1 },
{ flatbuffers::ET_FLOAT, 0, -1 }
};
static const int32_t values[] = { 0, 4, 8, 12 };
static const int64_t values[] = { 0, 4, 8, 12 };
static const char * const names[] = {
"x",
"y",