diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-21 14:53:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 14:53:24 +0100 |
commit | 0447d6fc8edfd636fa6c859d32e76ec8a760f42e (patch) | |
tree | d441d6bd2190b79607b953542edd1295e61ee078 /core/method_bind.h | |
parent | 7ac0973e9abb308b91597dd8881aeed62682733c (diff) | |
parent | 04bb6a708a5b68ed199e5caa92d16a50992caf52 (diff) |
Merge pull request #36393 from reduz/callable-method-pointer
New callable_mp macro, for signals to call method pointers directly.
Diffstat (limited to 'core/method_bind.h')
-rw-r--r-- | core/method_bind.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/method_bind.h b/core/method_bind.h index 72be141fd3..726ce512f8 100644 --- a/core/method_bind.h +++ b/core/method_bind.h @@ -31,19 +31,18 @@ #ifndef METHOD_BIND_H #define METHOD_BIND_H +#ifdef DEBUG_ENABLED +#define DEBUG_METHODS_ENABLED +#endif + #include "core/list.h" #include "core/method_ptrcall.h" #include "core/object.h" +#include "core/type_info.h" #include "core/variant.h" #include <stdio.h> -#ifdef DEBUG_ENABLED -#define DEBUG_METHODS_ENABLED -#endif - -#include "core/type_info.h" - enum MethodFlags { METHOD_FLAG_NORMAL = 1, |