devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=6fb35ad4154abff18e2a1ab4a8df8c8e438023a2

commit 6fb35ad4154abff18e2a1ab4a8df8c8e438023a2
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Tue Jan 5 08:47:54 2016 -0500

    edje: Fix compiler warning about set but not used variables
    
    When compiling src/bin/edje, we end up with compiler warnings about
    'pc' variable being set but not used. This patch just comments out
    (for now) those variables (as I am unsure if they are going to be used
    later or not).
    
    @fix
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/bin/edje/edje_cc_handlers.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index 32c8ba8..9b348f3 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -5982,13 +5982,13 @@ st_collections_group_parts_part_physics_body(void)
 static void
 st_collections_group_parts_part_insert_before(void)
 {
-   Edje_Part_Collection *pc;
+   /* Edje_Part_Collection *pc; */
    Edje_Part_Parser *epp;
    char *name;
 
    check_arg_count(1);
 
-   pc = eina_list_data_get(eina_list_last(edje_collections));
+   /* pc = eina_list_data_get(eina_list_last(edje_collections)); */
    name = parse_str(0);
    epp = (Edje_Part_Parser *)current_part;
    epp->reorder.insert_before = name;
@@ -6010,13 +6010,13 @@ st_collections_group_parts_part_insert_before(void)
 static void
 st_collections_group_parts_part_insert_after(void)
 {
-   Edje_Part_Collection *pc;
+   /* Edje_Part_Collection *pc; */
    Edje_Part_Parser *epp;
    char *name;
 
    check_arg_count(1);
 
-   pc = eina_list_data_get(eina_list_last(edje_collections));
+   /* pc = eina_list_data_get(eina_list_last(edje_collections)); */
    name = parse_str(0);
    epp = (Edje_Part_Parser *)current_part;
    epp->reorder.insert_after = name;

-- 


Reply via email to