From 89f36c7e7891c6b3bbd90c4ac2eb0ff6f5b5ef89 Mon Sep 17 00:00:00 2001 From: Tristan 'Natrist' Cormier Date: Sun, 5 Feb 2023 00:52:58 -0500 Subject: [PATCH] chore(hash): resolve sign mismatches --- storm/hash/TSHashTable.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storm/hash/TSHashTable.hpp b/storm/hash/TSHashTable.hpp index a2feae6..eadc784 100644 --- a/storm/hash/TSHashTable.hpp +++ b/storm/hash/TSHashTable.hpp @@ -70,7 +70,7 @@ void TSHashTable::Initialize() { this->m_slotlistarray.SetCount(4); int32_t linkOfs = this->GetLinkOffset(); - int32_t v3 = 0; + uint32_t v3 = 0; STORM_EXPLICIT_LIST(T, m_linktoslot)* v4; do { @@ -98,7 +98,7 @@ void TSHashTable::InternalClear(int32_t warn) { 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]; for (auto node = slotList.Head(); node; node = slotList.Head()) {