Codechange: replace uint with size_t in binary heap

This commit is contained in:
Rubidium
2024-05-12 09:45:39 +02:00
committed by rubidium42
parent 8349203038
commit 6cea49c117
2 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ public:
inline Titem_ &PopOpenNode(const Key &key)
{
Titem_ &item = m_open.Pop(key);
uint idxPop = m_open_queue.FindIndex(item);
size_t idxPop = m_open_queue.FindIndex(item);
m_open_queue.Remove(idxPop);
return item;
}