q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=fd93caf4b224928d139314876f4c269578c3a7b6
commit fd93caf4b224928d139314876f4c269578c3a7b6 Author: Daniel Kolesa <d.kol...@osg.samsung.com> Date: Wed Aug 30 13:53:22 2017 +0200 eolian: remove unused variable --- src/lib/eolian/eo_parser.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/lib/eolian/eo_parser.c b/src/lib/eolian/eo_parser.c index d54172829b..7e40cb7d47 100644 --- a/src/lib/eolian/eo_parser.c +++ b/src/lib/eolian/eo_parser.c @@ -1388,11 +1388,10 @@ parse_function_pointer(Eo_Lexer *ls) Eina_Strbuf *buf = push_strbuf(ls); Eolian_Function *meth = NULL; - Eina_Bool has_const = EINA_FALSE, - has_params = EINA_FALSE, - has_return = EINA_FALSE, - has_c_only = EINA_FALSE, - has_beta = EINA_FALSE; + Eina_Bool has_params = EINA_FALSE, + has_return = EINA_FALSE, + has_c_only = EINA_FALSE, + has_beta = EINA_FALSE; eo_lexer_get(ls); parse_name(ls, buf); --