home *** CD-ROM | disk | FTP | other *** search
- 1999-10-19 Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
-
- * std/valarray_meta.h: (_BinClos::_BinClos): Fix typo.
-
- 1999-090-17 Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
-
- * std/valarray_array.h (__valarray_copy): Fix typo.
-
- Index: gcc-2.95.2/libstdc++/std/valarray_array.h
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/libstdc++/std/valarray_array.h,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 valarray_array.h
- --- gcc-2.95.2/libstdc++/std/valarray_array.h 1999/11/05 01:10:20 1.1.1.1
- +++ gcc-2.95.2/libstdc++/std/valarray_array.h 1999/11/05 09:20:54
- @@ -73,7 +73,7 @@ template<typename _Tp>
- inline void
- __valarray_copy (const _Tp* __restrict__ __a, size_t __n, size_t __s,
- _Tp* __restrict__ __b)
- -{ for (size_t __i=0; __i<__n; ++__i, ++__b, __a += __s) *__b += *__a; }
- +{ for (size_t __i=0; __i<__n; ++__i, ++__b, __a += __s) *__b = *__a; }
-
- // copy plain __a[<__n>] in strided __b[<__n : __s>]
- template<typename _Tp>
- Index: gcc-2.95.2/libstdc++/std/valarray_meta.h
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/libstdc++/std/valarray_meta.h,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 valarray_meta.h
- --- gcc-2.95.2/libstdc++/std/valarray_meta.h 1999/11/05 01:10:20 1.1.1.1
- +++ gcc-2.95.2/libstdc++/std/valarray_meta.h 1999/11/05 09:20:54
- @@ -449,7 +449,7 @@ struct _BinClos<_Oper,_ValArray,_Expr,t
- typedef _BinBase<_Oper,valarray<_Tp>,_Dom> _Base;
- typedef typename _Base::value_type value_type;
-
- - _BinClos (const valarray<_Tp> __e1, const _Dom& __e2)
- + _BinClos (const valarray<_Tp>& __e1, const _Dom& __e2)
- : _Base (__e1, __e2) {}
- };
-
-