-/*------------------------.
-| --warnings's handling. |
-`------------------------*/
-
-static const char * const warnings_args[] =
-{
- /* In a series of synonyms, present the most meaningful first, so
- that argmatch_valid be more readable. */
- "none - no warnings",
- "midrule-values - unset or unused midrule values",
- "yacc - incompatibilities with POSIX Yacc",
- "conflicts-sr - S/R conflicts",
- "conflicts-rr - R/R conflicts",
- "deprecated - obsolete constructs",
- "other - all other warnings",
- "all - all of the above",
- "error - warnings are errors",
- 0
-};
-
-static const int warnings_types[] =
-{
- Wnone,
- Wmidrule_values,
- Wyacc,
- Wconflicts_sr,
- Wconflicts_rr,
- Wdeprecated,
- Wother,
- Wall,
- Werror
-};
-
-ARGMATCH_VERIFY (warnings_args, warnings_types);
-