diff options
| author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-26 14:56:05 +0000 |
|---|---|---|
| committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-26 14:56:05 +0000 |
| commit | f023efe4d380f64ec1d816b83b426e789684ecac (patch) | |
| tree | 5fafe2d1484d668442c8cdfb95c58cf70ce361f9 /libstdc++-v3/include/c_std/bits/std_cmath.h | |
| parent | a2da4bb7e18e3d57827fb4156a17f33d759b70d0 (diff) | |
| download | ppe42-gcc-f023efe4d380f64ec1d816b83b426e789684ecac.tar.gz ppe42-gcc-f023efe4d380f64ec1d816b83b426e789684ecac.zip | |
2000-10-26 Benjamin Kosnik <bkoz@redhat.com>
* acinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Remove.
* aclocal.m4: Regenerate.
* configure.in: Remove GLIBCPP_ENABLE_LONG_DOUBLE.
* configure: Regenerate.
* docs/configopts.html: Remove.
* src/complexl.cc: Revert.
* config.h.in: Remove.
* include/c_std/bits/std_cmath.h: Remove guards based on
_GLIBCPP_USE_LONG_DOUBLE.
* include/c/bits/std_cmath.h: Same. Format. Match c_std behavior
with respect to long double signatures.
* config/os/aix/bits/ctype_noninline.h (ctype): Remove throw
specification.
* config/os/newlib/bits/ctype_noninline.h (ctype): And here.
* config/os/solaris/solaris2.6/bits/ctype_noninline.h (ctype): Same.
* config/os/solaris/solaris2.5/bits/ctype_noninline.h (ctype): Same.
* config/os/generic/bits/ctype_noninline.h (ctype): Same.
* config/os/bsd/bits/ctype_noninline.h (ctype): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37073 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/c_std/bits/std_cmath.h')
| -rw-r--r-- | libstdc++-v3/include/c_std/bits/std_cmath.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libstdc++-v3/include/c_std/bits/std_cmath.h b/libstdc++-v3/include/c_std/bits/std_cmath.h index dcc5103bbdb..221b8157885 100644 --- a/libstdc++-v3/include/c_std/bits/std_cmath.h +++ b/libstdc++-v3/include/c_std/bits/std_cmath.h @@ -330,7 +330,6 @@ namespace _C_legacy { inline double _CPP_tanh_capture(double __x) { return tanh(__x); } -#ifdef _GLIBCPP_USE_LONG_DOUBLE #if _GLIBCPP_HAVE_ACOSL inline long double _CPP_acos_capture(long double __x) { return acosl(__x); } @@ -535,7 +534,6 @@ namespace _C_legacy { inline long double _CPP_tanh_capture(long double __x) { return tanh(static_cast<double>(__x)); } #endif -#endif // _GLIBCPP_USE_LONG_DOUBLE } // namespace _C_legacy # undef abs @@ -718,7 +716,6 @@ namespace std { inline double tanh(double __x) { return _C_legacy::_CPP_tanh_capture(__x); } -#ifdef _GLIBCPP_USE_LONG_DOUBLE inline long double abs(long double __x) { return _C_legacy::_CPP_fabs_capture(__x); } @@ -796,7 +793,6 @@ namespace std { inline long double tanh(long double __x) { return _C_legacy::_CPP_tanh_capture(__x); } -#endif // _GLIBCPP_USE_LONG_DOUBLE } // namespace std |

