diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-15 08:29:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 08:29:36 +0200 |
commit | 9bda8df46cb2c46ea10c1d8fe909c8eae2f76aff (patch) | |
tree | f21b602ba0ffac3d77ed1eaacac14c4757c23227 | |
parent | f337dd3e1e00ca236d12f555d2d3d610d04c76cc (diff) | |
parent | b5c80088ce70bf8ef8fd3b3a0cf98bf18a453743 (diff) |
Merge pull request #40386 from touilleMan/correct-Reference-is_reference-api.json
Correct is_reference attribute in api.json for Reference class
-rw-r--r-- | modules/gdnative/nativescript/api_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/nativescript/api_generator.cpp b/modules/gdnative/nativescript/api_generator.cpp index 9256b81985..019fa0d1f8 100644 --- a/modules/gdnative/nativescript/api_generator.cpp +++ b/modules/gdnative/nativescript/api_generator.cpp @@ -214,7 +214,7 @@ List<ClassAPI> generate_c_api_classes() { { List<StringName> inheriters; ClassDB::get_inheriters_from_class("Reference", &inheriters); - bool is_reference = !!inheriters.find(class_name); + bool is_reference = !!inheriters.find(class_name) || class_name == "Reference"; // @Unclear class_api.is_reference = !class_api.is_singleton && is_reference; } |