diff --git a/uppsrc/Core/Sort.h b/uppsrc/Core/Sort.h index 7961b5da7..25be5bd0e 100644 --- a/uppsrc/Core/Sort.h +++ b/uppsrc/Core/Sort.h @@ -526,9 +526,9 @@ Vector GetStableSortOrder(const Range& r, const Less& less) } template -inline Vector GetStableSortOrder(const Range& r) +Vector GetStableSortOrder(const Range& r) { - return GetSortOrder(r, std::less>()); + return GetStableSortOrder(r, std::less>()); } template