eolian: remove unused variable
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Wed, 30 Aug 2017 11:53:22 +0000 (13:53 +0200)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Wed, 30 Aug 2017 13:34:49 +0000 (15:34 +0200)
src/lib/eolian/eo_parser.c

index d541728..7e40cb7 100644 (file)
@@ -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);