Eo: Remove EO_SENTINEL.

This was never really needed because we always had the count.
Removing this now because we are already breaking API and ABI.
This commit is contained in:
Tom Hacohen 2015-09-28 15:48:17 +01:00
parent b8a7ecc930
commit e5c1c78924
6 changed files with 0 additions and 6 deletions

View File

@ -11,7 +11,6 @@ EAPI EO_FUNC_BODY(interface_a_power_3_get, int, 0);
static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(interface_a_power_3_get, NULL, "Get the a^3"),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -22,7 +22,6 @@ EAPI EO_FUNC_BODY(mixin_a_square_get, int, 0);
static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(mixin_a_square_get, _a_square_get, "Get the value of A^2"),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -43,7 +43,6 @@ static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(simple_a_set, _a_set, "Set property A"),
EO_OP_FUNC(simple_a_get, _a_get, "Get property A"),
EO_OP_FUNC_OVERRIDE(interface_a_power_3_get, _a_power_3_get),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -11,7 +11,6 @@ EAPI EO_FUNC_BODY(interface_a_power_3_get, int, 0);
static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(interface_a_power_3_get, NULL, "Get the a^3"),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -22,7 +22,6 @@ EAPI EO_FUNC_BODY(mixin_a_square_get, int, 0);
static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(mixin_a_square_get, _a_square_get, "Get the value of A^2"),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -43,7 +43,6 @@ static Eo_Op_Description op_desc[] = {
EO_OP_FUNC(simple_a_set, _a_set, "Set property A"),
EO_OP_FUNC(simple_a_get, _a_get, "Get property A"),
EO_OP_FUNC_OVERRIDE(interface_a_power_3_get, _a_power_3_get),
EO_OP_SENTINEL
};
static const Eo_Class_Description class_desc = {