From f2bab45202a9af5d089ce9bd301f619cadebc7c4 Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Sun, 27 Apr 2025 10:28:08 +0200 Subject: [PATCH] Fix `GDExtensionLoader` using the wrong super type in `GDSOFTCLASS`. --- core/extension/gdextension_loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/extension/gdextension_loader.h b/core/extension/gdextension_loader.h index 5d212779a62..77cab6f8cf3 100644 --- a/core/extension/gdextension_loader.h +++ b/core/extension/gdextension_loader.h @@ -35,7 +35,7 @@ class GDExtension; class GDExtensionLoader : public RefCounted { - GDSOFTCLASS(GDExtensionLoader, GDExtensionLoader); + GDSOFTCLASS(GDExtensionLoader, RefCounted); public: virtual Error open_library(const String &p_path) = 0;