diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2019-03-01 10:23:40 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-03-01 10:23:40 -0500 |
commit | f591a7aeaba739ad19f44b640d18950e41578c7b (patch) | |
tree | 923335b927b6c82473d4c85e0427a9a3aa75d8d7 /src/lib | |
parent | fe82e6fdad37ddfa93153817efd0541d7ccd0b92 (diff) |
eo: obtaining the Eo object attached to an Eina_Value is actually a const operation on the Eina_Value.
Summary: Depends on D8077
Reviewers: segfaultxavi, zmike
Reviewed By: segfaultxavi, zmike
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8078
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/eo/Eo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index cefcb1746e..a43baef9b5 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h | |||
@@ -2241,7 +2241,7 @@ eina_value_object_init(Eo *obj) | |||
2241 | * @since 1.21 | 2241 | * @since 1.21 |
2242 | */ | 2242 | */ |
2243 | static inline Eo * | 2243 | static inline Eo * |
2244 | eina_value_object_get(Eina_Value *v) | 2244 | eina_value_object_get(const Eina_Value *v) |
2245 | { | 2245 | { |
2246 | Eo *r = NULL; | 2246 | Eo *r = NULL; |
2247 | 2247 | ||