use typeid() for type tags now

This commit is contained in:
karroffel
2018-05-13 15:17:49 +02:00
parent 1a2afca8af
commit 38da87fc0b
7 changed files with 42 additions and 45 deletions

View File

@@ -8,7 +8,7 @@ namespace godot {
class _Wrapped {
public:
godot_object *_owner;
const void *_type_tag;
size_t _type_tag;
};
}