forked from mirror/OpenTTD
(svn r22144) -Codechange: Unify 'while (true)' to 'for (;;)'
This commit is contained in:
@@ -67,7 +67,7 @@ struct CHashTableSlotT
|
||||
return true;
|
||||
}
|
||||
Titem_ *pItem = m_pFirst;
|
||||
while (true) {
|
||||
for (;;) {
|
||||
if (pItem == NULL) {
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user