Activate -Wparenthesis by default

This commit is contained in:
Wolfgang Bumiller 2012-12-31 11:14:24 +01:00
parent 0c4806b4a0
commit 3538b505da

1
opts.c
View file

@ -58,6 +58,7 @@ static void opts_setdefault() {
opts_set(opts.warn, WARN_UNINITIALIZED_CONSTANT, true);
opts_set(opts.warn, WARN_UNINITIALIZED_GLOBAL, false);
opts_set(opts.warn, WARN_DEPRECATED, true);
opts_set(opts.warn, WARN_PARENTHESIS, true);
/* flags */
opts_set(opts.flags, ADJUST_VECTOR_FIELDS, true);
opts_set(opts.flags, FTEPP, false);