Bug fixed: getFormatAttribute for enum type
authoryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 17 Jul 2003 15:23:25 +0000 (15:23 +0000)
committeryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 17 Jul 2003 15:23:25 +0000 (15:23 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@111 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/ltt/parser.c

index 31e89a51036f84f4dd3353fbf6ae8ee2e66ce45b..6b0fbd621a3b16b8b3b74881bfba084d1d7b6461 100644 (file)
@@ -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;
   }
This page took 0.024233 seconds and 4 git commands to generate.