summaryrefslogtreecommitdiff
path: root/core/object
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-03-16 15:44:04 +0100
committerGitHub <noreply@github.com>2021-03-16 15:44:04 +0100
commit224f5cab992e10fa1d197785942e60032b269577 (patch)
tree5d6e762d4e807cc8eca8a6ea19389fd0cee85e35 /core/object
parent21b05a3944256ddbaf492731a86334f8a59b1772 (diff)
parentecfa570ccbcd6735bd42b09ac947ee57c57077ce (diff)
Merge pull request #46378 from reduz/static-method-in-variant-types
Add static method support to core Variant types
Diffstat (limited to 'core/object')
-rw-r--r--core/object/method_bind.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/method_bind.h b/core/object/method_bind.h
index 7cf4f8d4e8..7030ae201b 100644
--- a/core/object/method_bind.h
+++ b/core/object/method_bind.h
@@ -42,6 +42,7 @@ enum MethodFlags {
METHOD_FLAG_VIRTUAL = 32,
METHOD_FLAG_FROM_SCRIPT = 64,
METHOD_FLAG_VARARG = 128,
+ METHOD_FLAG_STATIC = 256,
METHOD_FLAGS_DEFAULT = METHOD_FLAG_NORMAL,
};