Eolian generator: remove sentinel generation

This commit is contained in:
Daniel Kolesa 2015-09-28 15:59:16 +01:00 committed by Tom Hacohen
parent a3f9b2e051
commit 76bc86716e
3 changed files with 2 additions and 5 deletions

View File

@ -19,9 +19,7 @@ static Eina_Hash *_funcs_params_init = NULL;
static const char
tmpl_eo_ops_desc[] = "\
static Eo_Op_Description _@#class_op_desc[] = {@#list_op\n\
EO_OP_SENTINEL\n\
};\n\n";
static Eo_Op_Description _@#class_op_desc[] = {@#list_op\n};\n\n";
static const char
tmpl_events_desc[] = "\

View File

@ -29,7 +29,6 @@ static Eo_Op_Description _class_simple_op_desc[] = {
EO_OP_FUNC(evas_obj_simple_a_set, _class_simple_a_set),
EO_OP_FUNC(evas_obj_simple_a_get, _class_simple_a_get),
EO_OP_FUNC(evas_obj_simple_foo, __eolian_class_simple_foo),
EO_OP_SENTINEL
};
static const Eo_Class_Description _class_simple_class_desc = {

View File

@ -78,4 +78,4 @@ static const Eo_Class_Description _override_class_desc = {
NULL
};
EO_DEFINE_CLASS(override_class_get, &_override_class_desc, BASE_CLASS, NULL);
EO_DEFINE_CLASS(override_class_get, &_override_class_desc, BASE_CLASS, NULL);