diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-08 05:57:48 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-08 05:57:48 +0000 |
commit | 3886419f4ff5daf16d055b5da0d652469a7a5ddc (patch) | |
tree | c2efe55185f17757b1916b16445e9da6a1a2c288 /libstdc++-v3/src | |
parent | 7041c23396888e348e74817570f7ab05285c4bcd (diff) | |
download | ppe42-gcc-3886419f4ff5daf16d055b5da0d652469a7a5ddc.tar.gz ppe42-gcc-3886419f4ff5daf16d055b5da0d652469a7a5ddc.zip |
* libmath/Makefile.am (EXTRA_LONG_DOUBLE_yes): Remove ccosl,
cexpl, clog10l, csinhl, ctanhl, ctanl.
(EXTRA_DIST): Remove ccos, ccosf, csin, csinf, ccosh, ccoshf,
csing, csinhf, clog10, clog10f, ctan, ctanf, ctanh, ctanhf.
* libmath/Makefile.in: Regenarate.
* libmath/ccos.c: Remove.
* libmath/ccosf.c: Likewise.
* libmath/ccosl.c: Likewise.
* libmath/csin.c: Likewise.
* libmath/csinf.c: Likewise.
* libmath/csinl.c: Likewise.
* libmath/ctan.c: Likewise.
* libmath/ctanf.c: Likewise.
* libmath/ctanl.c: Likewise.
* libmath/ccosh.c: Likewise.
* libmath/ccoshf.c: Likewise.
* libmath/ccoshl.c: Likewise.
* libmath/csinh.c: Likewise.
* libmath/csinhf.c: Likewise.
* libmath/csinhl.c: Likewise.
* libmath/ctanh.c: Likewise.
* libmath/ctanhf.c: Likewise.
* libmath/ctanhl.c: Likewise.
* libmath/cexp.c: Likewise.
* libmath/cexpf.c: Likewise.
* libmath/cexpl.c: Likewise.
* libmath/clog10.c: Likewise.
* libmath/clog10f.c: Likewise.
* libmath/clog10l.c: Likewise.
* libmath/complex-stub.h: Remove forward declaration of functions
mentioned above.
* include/bits/std_complex.h(tan, tanh): Define primary templates.
(complex<>): Remove friend declarations for tan<> and tanh<>.
* src/complex.cc(tan, tanh): Remove specializations.
* acinclude.m4: Remove check for ccos, ccosf, ccosl, ccosh,
ccoshf, ccoshl, csin, csinf, csinl, csinh, csinhf, csinhl, cexp,
cexpf, cexpl, ctan, ctanf, ctanl, ctanh, ctanhf, ctanhl.
* aclocal.m4: Regenarate.
* configure: Regenarate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38128 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r-- | libstdc++-v3/src/complex.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libstdc++-v3/src/complex.cc b/libstdc++-v3/src/complex.cc index 6d41b19b2f0..705dc7fb5d2 100644 --- a/libstdc++-v3/src/complex.cc +++ b/libstdc++-v3/src/complex.cc @@ -48,15 +48,4 @@ namespace std complex<FLT> sqrt(const complex<FLT>& __x) { return complex<FLT>(csqrt(__x._M_value)); } - - template<> - complex<FLT> - tan(const complex<FLT>& __x) - { return complex<FLT>(ctan(__x._M_value)); } - - template<> - complex<FLT> - tanh(const complex<FLT>& __x) - { return complex<FLT>(ctanh(__x._M_value)); } - } // namespace std |