summaryrefslogtreecommitdiffstats
path: root/libstdc++-v3/include/parallel
diff options
context:
space:
mode:
authorrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-19 09:44:24 +0000
committerrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-19 09:44:24 +0000
commit13bc4ac9a6d091c1f6500060c48bdfd55c3ba421 (patch)
tree5bb0a7ce008a72a7273992b69b023410a87af30c /libstdc++-v3/include/parallel
parent7f39a6a4acb1c800097d27dbd744982ddfaf901a (diff)
downloadppe42-gcc-13bc4ac9a6d091c1f6500060c48bdfd55c3ba421.tar.gz
ppe42-gcc-13bc4ac9a6d091c1f6500060c48bdfd55c3ba421.zip
Uglify C++ headers some more.
libstdc++-v3/: * include/ext/throw_allocator.h (hash<__gnu_cxx::throw_value_limit>::operator()): Uglify local. (hash<__gnu_cxx::throw_value_random>::operator()): Likewise. * include/parallel/set_operations.h (__symmetric_difference_func): Uglify remaining arguments to __count, __first_empty, _M_invoke. (__difference_func): Likewise for __count. * include/profile/impl/profiler_node.h (__object_info_base::__write): Uglify parameter. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164411 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/parallel')
-rw-r--r--libstdc++-v3/include/parallel/set_operations.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libstdc++-v3/include/parallel/set_operations.h b/libstdc++-v3/include/parallel/set_operations.h
index f6b076f0655..f552c1dda1b 100644
--- a/libstdc++-v3/include/parallel/set_operations.h
+++ b/libstdc++-v3/include/parallel/set_operations.h
@@ -103,11 +103,11 @@ namespace __gnu_parallel
}
_DifferenceType
- __count(_IIter __a, _IIter __b, _IIter __c, _IIter d) const
+ __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const
{
_DifferenceType __counter = 0;
- while (__a != __b && __c != d)
+ while (__a != __b && __c != __d)
{
if (_M_comp(*__a, *__c))
{
@@ -126,12 +126,12 @@ namespace __gnu_parallel
}
}
- return __counter + (__b - __a) + (d - __c);
+ return __counter + (__b - __a) + (__d - __c);
}
_OutputIterator
- __first_empty(_IIter __c, _IIter d, _OutputIterator __out) const
- { return std::copy(__c, d, __out); }
+ __first_empty(_IIter __c, _IIter __d, _OutputIterator __out) const
+ { return std::copy(__c, __d, __out); }
_OutputIterator
__second_empty(_IIter __a, _IIter __b, _OutputIterator __out) const
@@ -153,10 +153,10 @@ namespace __gnu_parallel
_Compare _M_comp;
_OutputIterator
- _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter d,
+ _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d,
_OutputIterator __r) const
{
- while (__a != __b && __c != d)
+ while (__a != __b && __c != __d)
{
if (_M_comp(*__a, *__c))
{
@@ -177,11 +177,11 @@ namespace __gnu_parallel
_DifferenceType
__count(_IIter __a, _IIter __b,
- _IIter __c, _IIter d) const
+ _IIter __c, _IIter __d) const
{
_DifferenceType __counter = 0;
- while (__a != __b && __c != d)
+ while (__a != __b && __c != __d)
{
if (_M_comp(*__a, *__c))
{
OpenPOWER on IntegriCloud