From: Chris Michael Date: Wed, 14 Oct 2015 13:43:12 +0000 (-0400) Subject: edje_edit: Fix clang warning of unused variables X-Git-Tag: v1.16.0-beta2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=897132245f4c4d7663575618237c5fe927d1309d;p=platform%2Fupstream%2Fefl.git edje_edit: Fix clang warning of unused variables Summary: clang reports that these static variables are not being used anywhere (and grep confirms this), so remove them. @fix Signed-off-by: Chris Michael --- diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c index 4cedfee..8d09e45 100644 --- a/src/lib/edje/edje_edit.c +++ b/src/lib/edje/edje_edit.c @@ -22,10 +22,6 @@ #define MY_CLASS EDJE_EDIT_CLASS -static const char EDJE_EDIT_ERROR_GROUP_CURRENTLY_USED_STR[] = "Current group cannot be deleted"; -static const char EDJE_EDIT_ERROR_GROUP_REFERENCED_STR[] = "Group still in use"; -static const char EDJE_EDIT_ERROR_GROUP_DOES_NOT_EXIST_STR[] = "Group does not exist"; - EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_CURRENTLY_USED = 0; EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_REFERENCED = 0; EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_DOES_NOT_EXIST = 0;