From: Sven Verdoolaege Date: Wed, 29 Feb 2012 17:54:28 +0000 (+0100) Subject: isl_token: change type of "type" field from enum isl_token_type to int X-Git-Tag: isl-0.10~98 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca22fe0d4c14e70b2346edcc380cb86ee4e1e397;p=platform%2Fupstream%2Fisl.git isl_token: change type of "type" field from enum isl_token_type to int The field is also assigned values outside the enum. Signed-off-by: Sven Verdoolaege --- diff --git a/include/isl/stream.h b/include/isl/stream.h index 7c19299..90b92f7 100644 --- a/include/isl/stream.h +++ b/include/isl/stream.h @@ -37,7 +37,7 @@ enum isl_token_type { ISL_TOKEN_ERROR = -1, ISL_TOKEN_LAST }; struct isl_token { - enum isl_token_type type; + int type; unsigned int on_new_line : 1; unsigned is_keyword : 1;