]> git.saurik.com Git - bison.git/blobdiff - src/complain.c
package: bump to 2015
[bison.git] / src / complain.c
index 115b7043866ab900ec8394b558ec5c479ac2339b..22e18cb390d89d11b503bc875581b1679207cbcf 100644 (file)
@@ -1,6 +1,6 @@
 /* Declaration for error-reporting function for Bison.
 
-   Copyright (C) 2000-2002, 2004-2006, 2009-2013 Free Software
+   Copyright (C) 2000-2002, 2004-2006, 2009-2015 Free Software
    Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
@@ -153,10 +153,10 @@ warnings_argmatch (char *args)
         warnings_are_errors = false;
       else
         {
-          // The length of the possible 'no-' prefix: 3, or 0.
+          /* The length of the possible 'no-' prefix: 3, or 0.  */
           size_t no = STRPREFIX_LIT ("no-", args) ? 3 : 0;
-          // The length of the possible 'error=' (possibly after
-          // 'no-') prefix: 6, or 0.
+          /* The length of the possible 'error=' (possibly after
+             'no-') prefix: 6, or 0. */
           size_t err = STRPREFIX_LIT ("error=", args + no) ? 6 : 0;
 
           warning_argmatch (args, no, err);