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

@@ -4,7 +4,7 @@
EvaluationScope::EvaluationScope(unordered_map<size_t, shared_ptr<EvalValue>> *scriptVariables, int deepestScope) {
_scriptScope = scriptVariables;
_localScope = unordered_map<u_int64_t, shared_ptr<EvalValue>>(deepestScope);
_localScope = unordered_map<uint64_t, shared_ptr<EvalValue>>(deepestScope);
}
void EvaluationScope::CreateVariable(BoundVariableKey* key, const shared_ptr<EvalValue> &value) {