From a43e8aafbf3be84be4f2095152caf828a4b41d34 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 5831cd64a..6da8408de 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;