From: Jay Freeman (saurik) Date: Thu, 3 Nov 2011 16:34:23 +0000 (+0000) Subject: I forgot to commit this infinite loop. X-Git-Url: https://git.saurik.com/minimal.git/commitdiff_plain/HEAD I forgot to commit this infinite loop. --- diff --git a/stdlib.h b/stdlib.h index 9258221..80fa2fb 100644 --- a/stdlib.h +++ b/stdlib.h @@ -115,7 +115,7 @@ struct Iterator_ { for (bool _stop(true); _stop; ) \ for (const __typeof__(list) &_list = (list); _stop; _stop = false) \ for (Iterator_<__typeof__(list)>::Result _item = _list.begin(); _item != _list.end(); ++_item) \ - for (bool _suck(true); _suck; ) \ + for (bool _suck(true); _suck; _suck = false) \ for (const __typeof__(*_item) &item = *_item; _suck; _suck = false) #endif