Changed references of u_int64_t to uint64_t, to account for mingw
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-06-13 15:31:48 +02:00
parent 9d5c6911b2
commit e93bcab14d
3 changed files with 6 additions and 6 deletions

View File

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