From e327d27b214753a35b03a89886c82311c96353fa Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 3 Nov 2011 16:34:23 +0000 Subject: [PATCH] I forgot to commit this infinite loop. --- stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2