]> git.saurik.com Git - bison.git/commitdiff
* src/bison.simple (yyparse): Suppress warning `comparaison
authorAkim Demaille <akim@epita.fr>
Wed, 18 Jul 2001 10:07:45 +0000 (10:07 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 18 Jul 2001 10:07:45 +0000 (10:07 +0000)
between signed and unsigned'.

ChangeLog
src/bison.simple

index 4cbc516abaebdadf33a011fa46f04c523ee6686f..ccb6f1ca2d1778924aa90f0db0c550f6c260b7bd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-08  Pascal Bart  <pascal.bart@epita.fr>
+
+       * src/bison.simple (yyparse): Suppress warning `comparaison
+       between signed and unsigned'.
+
 2001-07-05  Pascal Bart  <pascal.bart@epita.fr>
 
        * src/getargs.h (raw_flag): Remove.
index 2a0f0b194145edca898b8c554bb136f8a6931c6b..e2b5d6fb377e456113697f17e86c19506ebf2597 100644 (file)
@@ -672,7 +672,7 @@ yyerrlab:
          count = 0;
          /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
          for (x = (yyn < 0 ? -yyn : 0);
-              x < (sizeof (yytname) / sizeof (char *)); x++)
+              x < (int) (sizeof (yytname) / sizeof (char *)); x++)
            if (yycheck[x + yyn] == x)
              size += strlen (yytname[x]) + 15, count++;
          size += strlen ("parse error, unexpected `") + 1;
@@ -688,7 +688,7 @@ yyerrlab:
                {
                  count = 0;
                  for (x = (yyn < 0 ? -yyn : 0);
-                      x < (sizeof (yytname) / sizeof (char *)); x++)
+                      x < (int) (sizeof (yytname) / sizeof (char *)); x++)
                    if (yycheck[x + yyn] == x)
                      {
                        strcat (msg, count == 0 ? ", expecting `" : " or `");