cedric pushed a commit to branch efl-1.8. http://git.enlightenment.org/core/efl.git/commit/?id=546ceaea21d7c373b1e8171a55c9159001913a6d
commit 546ceaea21d7c373b1e8171a55c9159001913a6d Author: Dennis Schridde <[email protected]> Date: Fri Dec 27 12:06:30 2013 +0900 eina: struct _Eina_Rbtree contains an enum bitfield, which is a GNU extension not specified by C99. Reviewers: barbieri, raster, cedric Reviewed By: cedric CC: cedric Differential Revision: https://phab.enlightenment.org/D412 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/eina/eina_rbtree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_rbtree.h b/src/lib/eina/eina_rbtree.h index e8bcc65..6a4d764 100644 --- a/src/lib/eina/eina_rbtree.h +++ b/src/lib/eina/eina_rbtree.h @@ -82,7 +82,7 @@ struct _Eina_Rbtree { Eina_Rbtree *son[2]; - Eina_Rbtree_Color color : 1; + unsigned int color : 1; }; /** --
