(svn r13279) -Codechange: simplify condition for terminating loop when reversing list order

This commit is contained in:
smatz
2008-05-26 21:45:57 +00:00
parent 855336a1e6
commit 691bf29724

View File

@@ -65,7 +65,7 @@ public: // Temporary: public for conversion only
do { do {
Swap(*a, *b); Swap(*a, *b);
} while (((a + 1) != b) && (++a != --b)); } while (++a < --b);
} }
public: public: