chore(hash): resolve sign mismatches

This commit is contained in:
Tristan 'Natrist' Cormier 2023-02-05 00:52:58 -05:00 committed by GitHub
parent 0197d20ca0
commit 89f36c7e78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ void TSHashTable<T, TKey>::Initialize() {
this->m_slotlistarray.SetCount(4); this->m_slotlistarray.SetCount(4);
int32_t linkOfs = this->GetLinkOffset(); int32_t linkOfs = this->GetLinkOffset();
int32_t v3 = 0; uint32_t v3 = 0;
STORM_EXPLICIT_LIST(T, m_linktoslot)* v4; STORM_EXPLICIT_LIST(T, m_linktoslot)* v4;
do { do {
@ -98,7 +98,7 @@ void TSHashTable<T, TKey>::InternalClear(int32_t warn) {
this->m_fulllist.UnlinkAll(); this->m_fulllist.UnlinkAll();
for (int32_t i = 0; i < this->m_slotlistarray.Count(); i++) { for (uint32_t i = 0; i < this->m_slotlistarray.Count(); i++) {
auto& slotList = this->m_slotlistarray[i]; auto& slotList = this->m_slotlistarray[i];
for (auto node = slotList.Head(); node; node = slotList.Head()) { for (auto node = slotList.Head(); node; node = slotList.Head()) {