diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2019-03-07 20:50:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 20:50:37 +0100 |
commit | 4c0b0a6bdd3c87220ab0d79ba647d5bdd843ce6c (patch) | |
tree | 937f0f33962d2ff838c64643f1eceed49f3d552e /modules/mono/csharp_script.h | |
parent | d2be02f21e8a16b44af78e72f9910e4640c4e0b1 (diff) | |
parent | e904f814c83636903bf9de37078d141f3f51c340 (diff) |
Merge pull request #26765 from neikeq/issue-25959
Mono: Fix crash when re-using script binding after domain reloading
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 8b1a4b5f7e..e62eac67ab 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -309,6 +309,9 @@ class CSharpLanguage : public ScriptLanguage { Dictionary scripts_metadata; + friend class GDMono; + void _uninitialize_script_bindings(); + public: StringNameCache string_names; |