diff options
author | Vladimir Menshakov | 2009-12-27 14:13:39 +0000 |
---|---|---|
committer | Vladimir Menshakov | 2009-12-27 14:13:39 +0000 |
commit | 3936861b7c40912123c687ed5999639cb6f00787 (patch) | |
tree | 384b911f732b50326547659b45acd32e9b58fc82 /test | |
parent | 9f37be314d29189a7709e400b2ded6afd0d1e3fa (diff) | |
download | scummvm-rg350-3936861b7c40912123c687ed5999639cb6f00787.tar.gz scummvm-rg350-3936861b7c40912123c687ed5999639cb6f00787.tar.bz2 scummvm-rg350-3936861b7c40912123c687ed5999639cb6f00787.zip |
allowed list to be sorted with default comparator
svn-id: r46644
Diffstat (limited to 'test')
-rw-r--r-- | test/common/algorithm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common/algorithm.h b/test/common/algorithm.h index bb2932178d..ed87d6850d 100644 --- a/test/common/algorithm.h +++ b/test/common/algorithm.h @@ -76,7 +76,7 @@ public: TS_ASSERT_EQUALS(checkSort(list.begin(), list.end(), Common::Less<Item>()), true); // already sorted - Common::sort(list.begin(), list.end(), Common::Less<Item>()); + Common::sort(list.begin(), list.end()); TS_ASSERT_EQUALS(checkSort(list.begin(), list.end(), Common::Less<Item>()), true); } }; |