mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-06 10:58:01 +00:00
Typo.
svn-id: r46621
This commit is contained in:
parent
cbeb001189
commit
11a835b6ce
@ -12,11 +12,11 @@ class AlgorithmTestSuite : public CxxTest::TestSuite {
|
||||
return true;
|
||||
|
||||
// Check whether the container is sorted by the given binary predicate, which
|
||||
// decides whether the first value passed preceeds the second value passed.
|
||||
// decides whether the first value passed precedes the second value passed.
|
||||
//
|
||||
// To do that it checks an item and its follower in the container with the
|
||||
// given predicate in reverse order, when it returns false everything is
|
||||
// fine, when it returns false, the follower preceeds the item and thus
|
||||
// fine, when it returns false, the follower precedes the item and thus
|
||||
// the order is violated.
|
||||
for (T prev = first++; first != last; ++prev, ++first) {
|
||||
if (comp(*first, *prev))
|
||||
|
Loading…
x
Reference in New Issue
Block a user