diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-10-05 17:47:34 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-10-05 17:47:34 +0200 |
commit | 9475e860784a26a4fb39fa15b42765578f60828e (patch) | |
tree | 598c010599381cba00caf2542a64f63473dcf783 /modules/mono | |
parent | 6bc18042c2a809a27638f410db577ff95826c49b (diff) |
Fix build error for windows mono export templates
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/mono_gd/gd_mono.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono.h b/modules/mono/mono_gd/gd_mono.h index e6ac042c1f..97c2252f7c 100644 --- a/modules/mono/mono_gd/gd_mono.h +++ b/modules/mono/mono_gd/gd_mono.h @@ -185,7 +185,7 @@ public: _FORCE_INLINE_ GDMonoAssembly *get_editor_tools_assembly() const { return editor_tools_assembly; } #endif -#ifdef WINDOWS_ENABLED +#if defined(WINDOWS_ENABLED) && defined(TOOLS_ENABLED) const MonoRegInfo &get_mono_reg_info() { return mono_reg_info; } #endif |