From 897132245f4c4d7663575618237c5fe927d1309d Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 14 Oct 2015 09:43:12 -0400 Subject: [PATCH] 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 --- src/lib/edje/edje_edit.c | 4 ---- 1 file changed, 4 deletions(-) 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; -- 2.7.4