/* 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
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);