cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bf9c3aad245dbeeb5877751bf1a42c89f0c6b23a
commit bf9c3aad245dbeeb5877751bf1a42c89f0c6b23a 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; }; /** --
