From 5f89b6e00ea8f48f9b0814d07929a66dc99d61d3 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Mon, 10 Nov 2014 11:58:52 -0800 Subject: [PATCH] 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. --- interface/src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 0afe011cd6..d54a638239 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -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;