summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/parallel/quicksort.h
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-12 00:51:50 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-12 00:51:50 +0000
commit0214886d6c0d22155dc89f5b7eea791c252f9bb8 (patch)
treea808c86655cd3f428d02e31535c1474dab3c6be9 /libstdc++-v3/include/parallel/quicksort.h
parent3934f9d95e3baafcb871ff8e887aafa05f557771 (diff)
downloadgcc-0214886d6c0d22155dc89f5b7eea791c252f9bb8.tar.gz
2010-01-11 Paolo Carlini <paolo.carlini@oracle.com>
* include/parallel/base.h (decode2): Rename to __decode2. (binder2nd): Likewise to __binder2nd. * include/parallel/quicksort.h: Adjust callers. * include/parallel/balanced_quicksort.h: Likewise. * include/parallel/partition.h: Likewise. * include/parallel/queue.h: Likewise. * include/parallel/algo.h: Qualify with std:: binder2nd use. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155825 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/parallel/quicksort.h')
-rw-r--r--libstdc++-v3/include/parallel/quicksort.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/parallel/quicksort.h b/libstdc++-v3/include/parallel/quicksort.h
index 508c3c1763c..1884eb867fa 100644
--- a/libstdc++-v3/include/parallel/quicksort.h
+++ b/libstdc++-v3/include/parallel/quicksort.h
@@ -1,6 +1,6 @@
// -*- C++ -*-
-// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the terms
@@ -77,7 +77,7 @@ namespace __gnu_parallel
_ValueType& __pivot = __samples[__pivot_rank * __num_samples / __n];
- __gnu_parallel::binder2nd<_Compare, _ValueType, _ValueType, bool>
+ __gnu_parallel::__binder2nd<_Compare, _ValueType, _ValueType, bool>
__pred(__comp, __pivot);
_DifferenceType __split = __parallel_partition(__begin, __end,
__pred, __num_threads);