"other",
"all",
"error",
+ "everything",
0
};
Wprecedence,
Wother,
Wall,
- Werror
+ Werror,
+ Weverything
};
ARGMATCH_VERIFY (warnings_args, warnings_types);
int value = XARGMATCH ("--warning", arg + no + err,
warnings_args, warnings_types);
- /* -Wnone == -Wno-all, and -Wno-none == -Wall. */
+ /* -Wnone == -Wno-everything, and -Wno-none == -Weverything. */
if (!value)
{
- value = Wall;
+ value = Weverything;
no = !no;
}
else if (STREQ (args, "no-error"))
{
warnings_are_errors = false;
- warning_argmatch ("no-error=all", 3, 6);
+ warning_argmatch ("no-error=everything", 3, 6);
}
else
{