Changed references of u_int64_t to uint64_t, to account for mingw
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -10,11 +10,11 @@ class BoundVariableKey{
|
||||
int _identifier;
|
||||
unsigned int _scopeId;
|
||||
bool _isCreation;
|
||||
u_int64_t _hash;
|
||||
uint64_t _hash;
|
||||
|
||||
static u_int64_t KnuthsHash(int i1, int i2)
|
||||
static uint64_t KnuthsHash(int i1, int i2)
|
||||
{
|
||||
u_int64_t ret = i1;
|
||||
uint64_t ret = i1;
|
||||
ret *= 2654435761U;
|
||||
return ret ^ i2;
|
||||
}
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
return _isCreation;
|
||||
}
|
||||
|
||||
u_int64_t GetHash(){
|
||||
uint64_t GetHash(){
|
||||
return _hash;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user