From 502a3d580f85830e060f1795a2336bb29fa1f258 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Tue, 21 Jul 2020 13:17:58 -0400 Subject: [PATCH] Remove override keyword from csharp_script.h to fix build errors Fixes godotengine/godot#40572 --- modules/mono/csharp_script.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 44e56effe18..c5736924ea0 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -179,7 +179,7 @@ public: virtual void get_script_property_list(List *p_list) const; virtual void update_exports(); - void get_members(Set *p_members) override; + virtual void get_members(Set *p_members); virtual bool is_tool() const { return tool; } virtual bool is_valid() const { return valid; }