The spec actually says that the 'L' (should have been 'LL' anyway) isn't

necessary; the compiler will know to read the constant as a long long.
This commit is contained in:
Andrzej Kapolka 2014-11-10 11:58:52 -08:00
parent 0c1ea784b9
commit 5f89b6e00e

View file

@ -108,7 +108,7 @@ static unsigned STARFIELD_SEED = 1;
static const int BANDWIDTH_METER_CLICK_MAX_DRAG_LENGTH = 6; // farther dragged clicks are ignored
const qint64 MAXIMUM_CACHE_SIZE = 10737418240L; // 10GB
const qint64 MAXIMUM_CACHE_SIZE = 10737418240; // 10GB
static QTimer* idleTimer = NULL;