Commit 8b92b0b5 by Paolo Carlini Committed by Paolo Carlini

cmath.tcc (__cmath_power): Revert previous commit: actually the warning is a…

cmath.tcc (__cmath_power): Revert previous commit: actually the warning is a front-end bug (c++/17120).

2004-08-20  Paolo Carlini  <pcarlini@suse.de>

	* include/c_std/cmath.tcc (__cmath_power): Revert previous commit:
	actually the warning is a front-end bug (c++/17120).

From-SVN: r86323
parent cad90591
2004-08-20 Paolo Carlini <pcarlini@suse.de>
* include/c_std/cmath.tcc (__cmath_power): Revert previous commit:
actually the warning is a front-end bug (c++/17120).
2004-08-20 Matthias Klose <doko@debian.org>
* config/abi/s390-linux-gnu/baseline_symbols.txt: New.
......
......@@ -40,7 +40,7 @@ namespace std
{
_Tp __y = __n % 2 ? __x : 1;
while ((__n >>= 1))
while (__n >>= 1)
{
__x = __x * __x;
if (__n % 2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment