Merge pull request #29808 from akien-mga/fix-Wduplicated-branches

Mono: Fix -Wduplicated-branches warning
This commit is contained in:
Rémi Verschelde 2019-06-15 18:31:48 +02:00 committed by GitHub
commit ee58126cd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2536,13 +2536,8 @@ void BindingsGenerator::_default_argument_from_variant(const Variant &p_val, Arg
switch (p_val.get_type()) {
case Variant::NIL:
if (ClassDB::class_exists(r_iarg.type.cname)) {
// Object type
r_iarg.default_argument = "null";
} else {
// Variant
r_iarg.default_argument = "null";
}
// Either Object type or Variant
r_iarg.default_argument = "null";
break;
// Atomic types
case Variant::BOOL: