Commit 9ef313e3 by Jan van Dijk Committed by Benjamin Kosnik

std_complex.h (sin(const complex<_Tp>& __z)): Make this function return a value.


2004-06-10  Jan van Dijk  <jan@etpmod.phys.tue.nl>

	* include/std/std_complex.h (sin(const complex<_Tp>& __z)): Make
	this function return a value.

From-SVN: r82928
parent 811d7e77
2004-06-10 Jan van Dijk <jan@etpmod.phys.tue.nl>
* include/std/std_complex.h (sin(const complex<_Tp>& __z)): Make
this function return a value.
2004-06-09 Paolo Carlini <pcarlini@suse.de> 2004-06-09 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/15775 PR libstdc++/15775
......
...@@ -768,7 +768,7 @@ namespace std ...@@ -768,7 +768,7 @@ namespace std
template<typename _Tp> template<typename _Tp>
inline complex<_Tp> inline complex<_Tp>
sin(const complex<_Tp>& __z) { __complex_sin(__z.__rep()); } sin(const complex<_Tp>& __z) { return __complex_sin(__z.__rep()); }
// 26.2.8/11 sinh(__z): Returns the hyperbolic sine of __z. // 26.2.8/11 sinh(__z): Returns the hyperbolic sine of __z.
template<typename _Tp> template<typename _Tp>
......
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