From bf410332ab2ecaa3f97201b5741e8a38286df98d Mon Sep 17 00:00:00 2001 From: yangxx Date: Thu, 17 Jul 2003 15:23:25 +0000 Subject: [PATCH] Bug fixed: getFormatAttribute for enum type git-svn-id: http://ltt.polymtl.ca/svn@111 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/ltt/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index 31e89a51..6b0fbd62 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -162,7 +162,7 @@ char * getFormatAttribute(parse_file *in) //format is an option token = getToken(in); - if(strcmp("/",token) == 0){ + if(strcmp("/",token) == 0 || strcmp(">",token) == 0){ ungetToken(in); return NULL; } -- 2.34.1