efl-mono: Remove warnings

Test Plan: run tests

Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7501
This commit is contained in:
Lauro Moura 2018-12-21 16:04:43 +01:00 committed by Xavi Artigas
parent 3b9f8f8d6a
commit 8fa3f39e31
3 changed files with 4 additions and 11 deletions

View File

@ -213,8 +213,8 @@ struct property_wrapper_definition_generator
return true;
bool interface = context_find_tag<class_context>(context).current_wrapper_kind == class_context::interface;
bool is_static = (property.getter.is_engaged() && property.getter->is_static
|| property.setter.is_engaged() && property.setter->is_static);
bool is_static = (property.getter.is_engaged() && property.getter->is_static)
|| (property.setter.is_engaged() && property.setter->is_static);
if (interface && is_static)

View File

@ -329,9 +329,9 @@ struct klass_full_concrete_or_interface_name_generator
case attributes::class_type::abstract_:
case attributes::class_type::regular:
return klass_full_concrete_name(klass);
default:
return klass_full_interface_name(klass);
}
return klass_full_interface_name(klass);
}
template <typename OutputIterator, typename Context>

View File

@ -3904,13 +3904,6 @@ int _dummy_test_object_dummy_test_iface_iface_prop_get(EINA_UNUSED const Eo *obj
}
/// Dummy.Child
static Efl_Object *
_dummy_child_efl_object_constructor(Eo *obj, EINA_UNUSED Dummy_Child_Data *pd)
{
efl_constructor(efl_super(obj, DUMMY_CHILD_CLASS));
return obj;
}
EOLIAN static void
_dummy_child_class_constructor(Efl_Class *klass)
{