Remove empty constructors and destructors from core/

This commit is contained in:
kobewi
2025-11-14 23:24:54 +01:00
parent 68410acc61
commit e14263f917
67 changed files with 1 additions and 168 deletions

View File

@ -802,9 +802,6 @@ void GDExtension::_bind_methods() {
BIND_ENUM_CONSTANT(INITIALIZATION_LEVEL_EDITOR);
}
GDExtension::GDExtension() {
}
GDExtension::~GDExtension() {
if (is_library_open()) {
close_library();

View File

@ -177,7 +177,6 @@ public:
static void initialize_gdextensions();
static void finalize_gdextensions();
GDExtension();
~GDExtension();
};