diff options
| author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 03:01:39 +0000 |
|---|---|---|
| committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 03:01:39 +0000 |
| commit | 307f5d0fa55d44ab4f729333095b2cfa17bca08b (patch) | |
| tree | 230bbd6b79d4af73ca7addfc7910ef05f46ff421 /libstdc++-v3/include/bits/std_complex.h | |
| parent | 1134a0280f4d6354a8e8576525da101d770dc906 (diff) | |
| download | ppe42-gcc-307f5d0fa55d44ab4f729333095b2cfa17bca08b.tar.gz ppe42-gcc-307f5d0fa55d44ab4f729333095b2cfa17bca08b.zip | |
* include/bits/std_complex.h (conj): Undo double removal.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37311 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/std_complex.h')
| -rw-r--r-- | libstdc++-v3/include/bits/std_complex.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libstdc++-v3/include/bits/std_complex.h b/libstdc++-v3/include/bits/std_complex.h index b2aaa4e9610..ce14deec2fa 100644 --- a/libstdc++-v3/include/bits/std_complex.h +++ b/libstdc++-v3/include/bits/std_complex.h @@ -913,6 +913,11 @@ namespace std polar(const _Tp& __rho, const _Tp& __theta) { return complex<_Tp>(__rho * cos(__theta), __rho * sin(__theta)); } + template<typename _Tp> + inline complex<_Tp> + conj(const complex<_Tp>& __z) + { return complex<_Tp>(__z.real(), -__z.imag()); } + // // We use here a few more specializations. // template<> // inline complex<float> |

