QString::vasprintf: remove egcs-2.91.66 workaround

We don't support that compiler anymore.

Change-Id: I6d100a2d149ce4e506c7f8be3b56a33fa9d7092f
Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
bb10
Marc Mutz 2015-11-12 09:25:49 +01:00
parent 5ff7a3d96e
commit e4e10fa2d5
1 changed files with 1 additions and 2 deletions

View File

@ -6186,8 +6186,7 @@ QString QString::vasprintf(const char *cformat, va_list ap)
}
case lm_ll: {
qint64 *n = va_arg(ap, qint64*);
volatile uint tmp = result.length(); // egcs-2.91.66 gets internal
*n = tmp; // compiler error without volatile
*n = result.length();
break;
}
default: {