Mono: Fix '!t' error messages when generating bindings

This error wasn't affecting the bindings generation process.

(cherry picked from commit ff7fe9e771)
This commit is contained in:
Ignacio Etcheverry 2018-04-24 20:46:28 +02:00 committed by Hein-Pieter van Braam
parent 58918b629d
commit 3f6ea30f8d
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ Error BindingsGenerator::_generate_cs_type(const TypeInterface &itype, const Str
}
output.push_back(INDENT1 "public ");
bool is_abstract = !ClassDB::can_instance(itype.name) && ClassDB::is_class_enabled(itype.name); // can_instance returns true if there's a constructor and the class is not 'disabled'
bool is_abstract = itype.is_object_type && !ClassDB::can_instance(itype.name) && ClassDB::is_class_enabled(itype.name); // can_instance returns true if there's a constructor and the class is not 'disabled'
output.push_back(itype.is_singleton ? "static class " : (is_abstract ? "abstract class " : "class "));
output.push_back(itype.proxy_name);