Core: GetStableSortOrder fixed

git-svn-id: svn://ultimatepp.org/upp/trunk@9824 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-05-12 12:17:20 +00:00
parent f368037a10
commit 4ec4641d3f

View file

@ -526,9 +526,9 @@ Vector<int> GetStableSortOrder(const Range& r, const Less& less)
}
template <class Range>
inline Vector<int> GetStableSortOrder(const Range& r)
Vector<int> GetStableSortOrder(const Range& r)
{
return GetSortOrder(r, std::less<ValueTypeOf<Range>>());
return GetStableSortOrder(r, std::less<ValueTypeOf<Range>>());
}
template <class Map, class Less>