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/godot_cpp/classes/wrapped.hpp | |
parent | 779eaba42849a058ea082e0db978e575f1c67936 (diff) | |
download | redot-cpp-b21931c4a35b72ae948784dd90fed76f4364ae80.tar.gz |
Type `GDNativePropertyInfo.type` field as `GDNativeVariantType`
Diffstat (limited to 'include/godot_cpp/classes/wrapped.hpp')
-rw-r--r-- | include/godot_cpp/classes/wrapped.hpp | 2 |
1 files changed, 1 insertions, 1 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()); \ |