]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Refactor some for loops to a CYForEach() over CYNext<>.
[cycript.git] / Output.cpp
index 6e70b6b94c68d25adb6a205392243a6524d03235..ee58d06ecc8608da559df22e6839198538fef6ff 100644 (file)
@@ -607,7 +607,7 @@ void CYRubyProc::Output(CYOutput &out, CYFlags flags) const {
 
 void CYStatement::Multiple(CYOutput &out, CYFlags flags) const {
     bool first(true);
-    for (const CYStatement *next(this); next != NULL; next = next->next_) {
+    CYForEach (next, this) {
         bool last(next->next_ == NULL);
         CYFlags jacks(first ? last ? flags : CYLeft(flags) : last ? CYRight(flags) : CYCenter(flags));
         first = false;