From 4eb3af633ff61b5dc77db49d9da6eb6977657617 Mon Sep 17 00:00:00 2001 From: Eivind Kvedalen Date: Mon, 7 Mar 2016 23:23:04 +0100 Subject: [PATCH] Expressions: ints should be 64 bit. --- src/App/Expression.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Expression.h b/src/App/Expression.h index 5831cd64a3..6da8408dee 100644 --- a/src/App/Expression.h +++ b/src/App/Expression.h @@ -439,7 +439,7 @@ public: Expression * expr; ObjectIdentifier path; std::deque components; - int ivalue; + long long int ivalue; double fvalue; struct { std::string name;