removed the NOLONGLONG handling. it seems unlikely it is needed

This commit is contained in:
Daniel Marjamäki 2010-12-16 21:53:18 +01:00
parent 0cebcc8fa9
commit e0a0ed6fac
1 changed files with 0 additions and 7 deletions

View File

@ -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);