From: Dale Weiler Date: Fri, 4 Jan 2013 12:26:44 +0000 (+0000) Subject: Disable enhanced diagnostics as they're too slow. X-Git-Tag: before-library~369^2 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=ec4cd0d25825dae640904254bacbc3b1e5366c72 Disable enhanced diagnostics as they're too slow. --- diff --git a/opts.c b/opts.c index 548381a..44919b8 100644 --- a/opts.c +++ b/opts.c @@ -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) {