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

pull/155/head
smatz 17 years ago
parent 855336a1e6
commit 691bf29724

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

Loading…
Cancel
Save