diff options
| author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-09 12:47:10 +0300 |
|---|---|---|
| committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-06-17 16:36:26 +0300 |
| commit | 860e24683fd4ee627a3a950418dbd2b4cc6fe78b (patch) | |
| tree | 58e7033f2942ae3e7bb328b3a0961837447726ce /modules/mono/class_db_api_json.cpp | |
| parent | 78944fef820b7df87ca73d89169e68639ceef8e9 (diff) | |
| download | redot-engine-860e24683fd4ee627a3a950418dbd2b4cc6fe78b.tar.gz | |
Make enum/constant binds 64-bit.
Diffstat (limited to 'modules/mono/class_db_api_json.cpp')
| -rw-r--r-- | modules/mono/class_db_api_json.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/class_db_api_json.cpp b/modules/mono/class_db_api_json.cpp index 3afde1e8d3..c4547b4323 100644 --- a/modules/mono/class_db_api_json.cpp +++ b/modules/mono/class_db_api_json.cpp @@ -124,7 +124,7 @@ void class_db_api_to_json(const String &p_output_file, ClassDB::APIType p_api) { List<StringName> snames; - for (const KeyValue<StringName, int> &F : t->constant_map) { + for (const KeyValue<StringName, int64_t> &F : t->constant_map) { snames.push_back(F.key); } |
