Merge pull request #28423 from neikeq/dont-forget-to-think-a-name-for-this-branch

C#: Deprecate accessor methods and generate correct int and float types
This commit is contained in:
Rémi Verschelde 2019-04-29 16:56:25 +02:00 committed by GitHub
commit 554c0ea90b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 464 additions and 200 deletions

View file

@ -131,14 +131,6 @@ void CSharpLanguage::finish() {
finalizing = true;
#ifdef TOOLS_ENABLED
// Must be here, to avoid StringName leaks
if (BindingsGenerator::singleton) {
memdelete(BindingsGenerator::singleton);
BindingsGenerator::singleton = NULL;
}
#endif
// Make sure all script binding gchandles are released before finalizing GDMono
for (Map<Object *, CSharpScriptBinding>::Element *E = script_bindings.front(); E; E = E->next()) {
CSharpScriptBinding &script_binding = E->value();