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 <cedric.bail@samsung.com>
This commit is contained in:
Dennis Schridde 2013-12-27 12:06:30 +09:00 committed by Cedric BAIL
parent 2ef0f53401
commit bf9c3aad24
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ struct _Eina_Rbtree
{
Eina_Rbtree *son[2];
Eina_Rbtree_Color color : 1;
unsigned int color : 1;
};
/**