poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.

2007-04-01  Andreas Tobler  <a.tobler@schweiz.org>

	* include/tr1/poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.

From-SVN: r123410
This commit is contained in:
Andreas Tobler 2007-04-01 21:03:42 +00:00 committed by Andreas Tobler
parent 26cb39935f
commit df848e82e3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-04-01 Andreas Tobler <a.tobler@schweiz.org>
* include/tr1/poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.
2007-04-01 Richard Henderson <rth@redhat.com>
* include/tr1/poly_laguerre.tcc: s/__alpha/__alpha1/g.

View file

@ -275,7 +275,7 @@ _GLIBCXX_BEGIN_NAMESPACE(_GLIBCXX_TR1)
else if (__n > 10000000 && _Tp(__alpha1) > -_Tp(1)
&& __x < _Tp(2) * (_Tp(__alpha1) + _Tp(1)) + _Tp(4 * __n))
return __poly_laguerre_large_n(__n, __alpha1, __x);
else if (_Tp(__alpha) >= _Tp(0)
else if (_Tp(__alpha1) >= _Tp(0)
|| (__x > _Tp(0) && _Tp(__alpha1) < -_Tp(__n + 1)))
return __poly_laguerre_recursion(__n, __alpha1, __x);
else