removed the NOLONGLONG handling. it seems unlikely it is needed
This commit is contained in:
parent
0cebcc8fa9
commit
e0a0ed6fac
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue