Disable enhanced diagnostics as they're too slow.

This commit is contained in:
Dale Weiler 2013-01-04 12:26:44 +00:00
parent 793547a132
commit ec4cd0d258

2
opts.c
View file

@ -65,7 +65,7 @@ static void opts_setdefault() {
opts_set(opts.flags, FTEPP_PREDEFS, false);
opts_set(opts.flags, CORRECT_TERNARY, true);
opts_set(opts.flags, BAIL_ON_WERROR, true);
opts_set(opts.flags, ENHANCED_DIAGNOSTICS, true);
opts_set(opts.flags, ENHANCED_DIAGNOSTICS, false);
}
void opts_init(const char *output, int standard, size_t arraysize) {