diff options
Diffstat (limited to 'src/include/util/impl/qsort.H')
-rw-r--r-- | src/include/util/impl/qsort.H | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/include/util/impl/qsort.H b/src/include/util/impl/qsort.H index 3146d7d73..aae3e423a 100644 --- a/src/include/util/impl/qsort.H +++ b/src/include/util/impl/qsort.H @@ -1,25 +1,25 @@ -// IBM_PROLOG_BEGIN_TAG -// This is an automatically generated prolog. -// -// $Source: src/include/util/impl/qsort.H $ -// -// IBM CONFIDENTIAL -// -// COPYRIGHT International Business Machines Corp. 2012 -// -// p1 -// -// Object Code Only (OCO) source materials -// Licensed Internal Code Source Materials -// IBM HostBoot Licensed Internal Code -// -// The source code for this program is not published or other- -// wise divested of its trade secrets, irrespective of what has -// been deposited with the U.S. Copyright Office. -// -// Origin: 30 -// -// IBM_PROLOG_END +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/util/impl/qsort.H $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* COPYRIGHT International Business Machines Corp. 2012 */ +/* */ +/* p1 */ +/* */ +/* Object Code Only (OCO) source materials */ +/* Licensed Internal Code Source Materials */ +/* IBM HostBoot Licensed Internal Code */ +/* */ +/* The source code for this program is not published or otherwise */ +/* divested of its trade secrets, irrespective of what has been */ +/* deposited with the U.S. Copyright Office. */ +/* */ +/* Origin: 30 */ +/* */ +/* IBM_PROLOG_END_TAG */ #ifndef __UTIL_IMPL_QSORT_H #define __UTIL_IMPL_QSORT_H @@ -178,9 +178,9 @@ namespace Util } // Sort each partition. - sort(first,division); + sort(first,division,pred); std::advance(division, 1); - sort(division, last); + sort(division, last,pred); }; }; |