diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2022-01-03 20:24:16 +0000 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2022-01-03 20:24:16 +0000 |
commit | a88e1ce3624841910b9860eefe5fa994ed838382 (patch) | |
tree | 2caa840f34e14b0787d55788c4a5fdef54b952ee | |
parent | 28174d531b7128f0281fc2b88da2f4962fd3513e (diff) |
Remove unused `inherits_static` from GDCLASS
-rw-r--r-- | core/object/object.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/object/object.h b/core/object/object.h index fc6e6a3660..0c23a8a7f7 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -359,9 +359,6 @@ public: } \ return category; \ } \ - static String inherits_static() { \ - return String(#m_inherits); \ - } \ virtual bool is_class(const String &p_class) const override { \ if (_get_extension() && _get_extension()->is_class(p_class)) { \ return true; \ |