diff options
| author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-20 21:13:45 +0000 |
|---|---|---|
| committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-20 21:13:45 +0000 |
| commit | 9a356f094bfc599903cc39c58cdfffe0452ce4ef (patch) | |
| tree | ea301f62702cdc86a4c1af0c31b53cef08dd9f7b /libstdc++-v3/include/c | |
| parent | db0b1f50e8929a310a18866f96f19604582c812d (diff) | |
| download | ppe42-gcc-9a356f094bfc599903cc39c58cdfffe0452ce4ef.tar.gz ppe42-gcc-9a356f094bfc599903cc39c58cdfffe0452ce4ef.zip | |
2000-11-20 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/std_complex.h: Tweaks, include cmath for abs overloads.
* src/complex.cc: Remove cmath include, formatting tweaks, remove
dead code.
* include/c/bits/std_cmath.h: Formatting tweaks.
* testsuite/26_numerics/complex_value.cc: New file, for catching
bits gleaned from libstdc++/106.
* testsuite/23_containers/vector_ctor.cc (test02): Add test from
libstdc++/102.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37591 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/c')
| -rw-r--r-- | libstdc++-v3/include/c/bits/std_cmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/c/bits/std_cmath.h b/libstdc++-v3/include/c/bits/std_cmath.h index eee7649cc3e..307f618adec 100644 --- a/libstdc++-v3/include/c/bits/std_cmath.h +++ b/libstdc++-v3/include/c/bits/std_cmath.h @@ -296,7 +296,7 @@ namespace std abs(double __x) { return __builtin_fabs(__x); } #else inline double - abs(double __x) { return fabs (__x); } + abs(double __x) { return fabs(__x); } #endif extern "C" double floor(double __x); |

