Fix compiler errors
This commit is contained in:
parent
1d5e3e4f0c
commit
819862ddcb
|
@ -38,6 +38,8 @@
|
||||||
#define ISNAN(x) (std::isnan(x))
|
#define ISNAN(x) (std::isnan(x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
const int MathLib::bigint_bits = 64;
|
||||||
|
|
||||||
MathLib::value::value(const std::string &s) :
|
MathLib::value::value(const std::string &s) :
|
||||||
intValue(0), doubleValue(0), isUnsigned(false)
|
intValue(0), doubleValue(0), isUnsigned(false)
|
||||||
{
|
{
|
||||||
|
|
|
@ -68,6 +68,7 @@ public:
|
||||||
|
|
||||||
typedef long long bigint;
|
typedef long long bigint;
|
||||||
typedef unsigned long long biguint;
|
typedef unsigned long long biguint;
|
||||||
|
static const int bigint_bits;
|
||||||
|
|
||||||
static bigint toLongNumber(const std::string & str);
|
static bigint toLongNumber(const std::string & str);
|
||||||
static biguint toULongNumber(const std::string & str);
|
static biguint toULongNumber(const std::string & str);
|
||||||
|
|
Loading…
Reference in New Issue