diff options
| author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-05-21 00:06:04 +0200 |
|---|---|---|
| committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-05-21 00:06:04 +0200 |
| commit | 66b930a2667670996b4ffae4c649c3b92f985eab (patch) | |
| tree | ed92ff600706b5946486c74477b985dda61dbdaa /modules/mono/mono_gd/gd_mono_utils.h | |
| parent | f54becfee28fef5be69217660c2b05856ab16819 (diff) | |
| download | redot-engine-66b930a2667670996b4ffae4c649c3b92f985eab.tar.gz | |
Replace call to 'mono_runtime_object_init' with manual ctor invoking
Diffstat (limited to 'modules/mono/mono_gd/gd_mono_utils.h')
| -rw-r--r-- | modules/mono/mono_gd/gd_mono_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono_utils.h b/modules/mono/mono_gd/gd_mono_utils.h index 081a8a9813..c9f02ecc71 100644 --- a/modules/mono/mono_gd/gd_mono_utils.h +++ b/modules/mono/mono_gd/gd_mono_utils.h @@ -249,7 +249,7 @@ _FORCE_INLINE_ bool is_main_thread() { return mono_domain_get() != NULL && mono_thread_get_main() == mono_thread_current(); } -void runtime_object_init(MonoObject *p_this_obj); +void runtime_object_init(MonoObject *p_this_obj, GDMonoClass *p_class, MonoException **r_exc = NULL); GDMonoClass *get_object_class(MonoObject *p_object); GDMonoClass *type_get_proxy_class(const StringName &p_type); |
