diff options
author | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2022-10-09 23:21:32 +0200 |
---|---|---|
committer | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2022-10-13 14:04:54 +0200 |
commit | b21931c4a35b72ae948784dd90fed76f4364ae80 (patch) | |
tree | 8daece7cce2473bb4b6eb6bfca2079d6b305eecc /include | |
parent | 779eaba42849a058ea082e0db978e575f1c67936 (diff) | |
download | redot-cpp-b21931c4a35b72ae948784dd90fed76f4364ae80.tar.gz |
Type `GDNativePropertyInfo.type` field as `GDNativeVariantType`
Diffstat (limited to 'include')
-rw-r--r-- | include/godot_cpp/classes/wrapped.hpp | 2 | ||||
-rw-r--r-- | include/godot_cpp/core/method_bind.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp index 5bd032a..ce1bc51 100644 --- a/include/godot_cpp/classes/wrapped.hpp +++ b/include/godot_cpp/classes/wrapped.hpp @@ -219,7 +219,7 @@ public: cls->plist = reinterpret_cast<GDNativePropertyInfo *>(memalloc(sizeof(GDNativePropertyInfo) * list.size())); \ cls->plist_size = 0; \ for (const ::godot::PropertyInfo &E : list) { \ - cls->plist[cls->plist_size].type = E.type; \ + cls->plist[cls->plist_size].type = static_cast<GDNativeVariantType>(E.type); \ cls->plist[cls->plist_size].name = _alloc_and_copy_cstr(E.name.utf8().get_data()); \ cls->plist[cls->plist_size].hint = E.hint; \ cls->plist[cls->plist_size].hint_string = _alloc_and_copy_cstr(E.hint_string.utf8().get_data()); \ diff --git a/include/godot_cpp/core/method_bind.hpp b/include/godot_cpp/core/method_bind.hpp index 953a305..155a765 100644 --- a/include/godot_cpp/core/method_bind.hpp +++ b/include/godot_cpp/core/method_bind.hpp @@ -182,7 +182,7 @@ public: for (int i = 0; i < p_method_info.arguments.size(); i++) { names.push_back(p_method_info.arguments[i].name.utf8().get_data()); arguments.push_back(GDNativePropertyInfo{ - static_cast<uint32_t>(p_method_info.arguments[i].type), // uint32_t type; + static_cast<GDNativeVariantType>(p_method_info.arguments[i].type), // GDNativeVariantType type; _alloc_and_copy_cstr(p_method_info.arguments[i].name.utf8().get_data()), // const char *name; _alloc_and_copy_cstr(p_method_info.arguments[i].class_name.utf8().get_data()), // const char *class_name; p_method_info.arguments[i].hint, // NONE //uint32_t hint; |