diff options
author | pfg <pfg@FreeBSD.org> | 2011-12-21 16:36:07 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2011-12-21 16:36:07 +0000 |
commit | 5e6e71cda9cf20296c3b8e65a74dac893a0786af (patch) | |
tree | 6d4a4423e8ac0d52149d79b2dfeda7c9299a5f1e /contrib/libstdc++/src | |
parent | d9a69f25c9869a21e66cdf209e22ffb23d12a35f (diff) | |
download | FreeBSD-src-5e6e71cda9cf20296c3b8e65a74dac893a0786af.zip FreeBSD-src-5e6e71cda9cf20296c3b8e65a74dac893a0786af.tar.gz |
Update libstdc++ with small updates from the latest rev. (135556)
from the gcc 4.2 branch.
The libraries in the gcc-4_2-branch remained under the LGPLv2.
The changes can be reproduced with the following command:
svn diff svn://gcc.gnu.org/svn/gcc/branches/gcc-4_2-branch/libstdc++-v3
-r 127959:135556
Reviewed by: mm
Approved by: jhb (mentor)
MFC after: 2 weeks
Diffstat (limited to 'contrib/libstdc++/src')
-rw-r--r-- | contrib/libstdc++/src/valarray-inst.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libstdc++/src/valarray-inst.cc b/contrib/libstdc++/src/valarray-inst.cc index c13e1a2..e63c52f 100644 --- a/contrib/libstdc++/src/valarray-inst.cc +++ b/contrib/libstdc++/src/valarray-inst.cc @@ -68,7 +68,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) __gslice_to_index(size_t __o, const valarray<size_t>& __l, const valarray<size_t>& __s, valarray<size_t>& __i) { - // There are as much as dimensions as there are strides. + // There are as many dimensions as there are strides. size_t __n = __l.size(); // Get a buffer to hold current multi-index as we go through |