Revert "ClassDB: Workaround double-free for GDScript"

This reverts commit 8312ead0d9.
This commit is contained in:
George Marques 2020-02-19 09:14:39 -03:00
parent b967c910b8
commit d490648168
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D

View file

@ -1410,10 +1410,7 @@ Variant ClassDB::class_get_default_property_value(const StringName &p_class, con
cleanup_c = false;
} else if (ClassDB::can_instance(p_class)) {
c = ClassDB::instance(p_class);
#ifndef _MSC_VER
#warning FIXME: ObjectID refactoring broke GDScript handling of reference pointers, this needs a proper fix.
#endif
cleanup_c = (p_class != StringName("GDScript"));
cleanup_c = true;
}
if (c) {