poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278.
authorAndreas Tobler <a.tobler@schweiz.org>
Sun, 1 Apr 2007 21:03:42 +0000 (21:03 +0000)
committerAndreas Tobler <andreast@gcc.gnu.org>
Sun, 1 Apr 2007 21:03:42 +0000 (23:03 +0200)
2007-04-01  Andreas Tobler  <a.tobler@schweiz.org>

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

From-SVN: r123410

libstdc++-v3/ChangeLog
libstdc++-v3/include/tr1/poly_laguerre.tcc

index eb773d27dc4f01e37fe798591976bb2a4a0e4385..371360a4bd15851e1994adaa954bbfc42694f7d6 100644 (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.
index bcaef453677fd46d29192c920c8de78425bc2952..b99d092e86e58fe64763dfe22343a3f81c9dc4ba 100644 (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