From e0a0ed6facae9d640a6590ac67e83bf72bb83ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 16 Dec 2010 21:53:18 +0100 Subject: [PATCH] removed the NOLONGLONG handling. it seems unlikely it is needed --- lib/mathlib.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/mathlib.h b/lib/mathlib.h index 7a817dba8..b4bf5d0d5 100644 --- a/lib/mathlib.h +++ b/lib/mathlib.h @@ -33,14 +33,7 @@ class Tokenizer; class MathLib { public: - // To compile Cppcheck on a compiler that doesn't support "long long", - // use NOLONGLONG. -#ifdef NOLONGLONG - typedef long bigint; -#else typedef long long bigint; -#endif - static bigint toLongNumber(const std::string & str); static double toDoubleNumber(const std::string & str);