Skip to content

Commit 999b581

Browse files
authored
Update THashMap.h
1 parent adcc40b commit 999b581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cppcore/Container/THashMap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ inline U &THashMap<T, U, TAlloc>::operator[](const T &key) const {
278278
return mBuffer[pos]->mValue;
279279
}
280280

281-
Node next = mBuffer[pos]->mNext;
281+
Node *next = mBuffer[pos]->mNext;
282282
while (next->mKey != key) {
283283
next = next->mNext;
284284
if (nullptr == next) {

0 commit comments

Comments
 (0)