summaryrefslogtreecommitdiff
path: root/src/benchmarks
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-09-08 13:08:08 +0100
committerTom Hacohen <tom@stosb.com>2016-09-08 13:59:04 +0100
commitbd3801247e50ff1cda48af33345a918240d7d315 (patch)
tree66dcde47e0b8d00e226a431fe899fda4cc2440e7 /src/benchmarks
parent0f8fb7ef88d1bbb53e70c5ea0a4e8ef6a55c1a47 (diff)
downloadefl-bd3801247e50ff1cda48af33345a918240d7d315.tar.gz
Eo: Make function overrides implicit.
Before this commit, function overrides were explicit. That is, you'd have to explicitly state you were overriding a function instead of creating a new one. This made the code a tad more complex, and was also a bit more annoying to use. This commit removes this extra piece of information. This means we now store much less information per function, that will let us further optimise out structures in the future.
Diffstat (limited to 'src/benchmarks')
-rw-r--r--src/benchmarks/eo/eo_bench_eo_do.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmarks/eo/eo_bench_eo_do.c b/src/benchmarks/eo/eo_bench_eo_do.c
index 0666580a09..d434ab9dad 100644
--- a/src/benchmarks/eo/eo_bench_eo_do.c
+++ b/src/benchmarks/eo/eo_bench_eo_do.c
@@ -62,7 +62,7 @@ static Eina_Bool
_class_initializer(Efl_Class *klass)
{
EFL_OPS_DEFINE(ops,
- EFL_OBJECT_OP_FUNC_OVERRIDE(simple_a_set, _a_set),
+ EFL_OBJECT_OP_FUNC(simple_a_set, _a_set),
);
return efl_class_functions_set(klass, &ops);