Commit d0cbf089 by Paolo Carlini Committed by Paolo Carlini

complex (complex<float>::complex(float, float)): Uglify parameters.

2007-12-24  Paolo Carlini  <pcarlini@suse.de>

	* include/std/complex (complex<float>::complex(float, float)):
	Uglify parameters.

From-SVN: r131156
parent 8ffaa5a7
2007-12-24 Paolo Carlini <pcarlini@suse.de>
* include/std/complex (complex<float>::complex(float, float)):
Uglify parameters.
2007-12-17 Jonathan Wakely <jwakely.gcc@gmail.com> 2007-12-17 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/bits/locale_classes.h (has_facet, use_facet): Simplify * include/bits/locale_classes.h (has_facet, use_facet): Simplify
......
...@@ -1061,10 +1061,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -1061,10 +1061,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
{ return __imag__ _M_value; } { return __imag__ _M_value; }
inline inline
complex<float>::complex(float r, float i) complex<float>::complex(float __r, float __i)
{ {
__real__ _M_value = r; __real__ _M_value = __r;
__imag__ _M_value = i; __imag__ _M_value = __i;
} }
inline complex<float>& inline complex<float>&
...@@ -1476,7 +1476,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -1476,7 +1476,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
inline inline
complex<double>::complex(const complex<long double>& __z) complex<double>::complex(const complex<long double>& __z)
: _M_value(__z.__rep()) { } : _M_value(__z.__rep()) { }
inline inline
complex<long double>::complex(const complex<float>& __z) complex<long double>::complex(const complex<float>& __z)
......
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