aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/complex
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2001-02-05 01:38:47 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2001-02-05 01:38:47 +0000
commit22fdd65e5971ec8f15368ba77046ce8c6c3cb329 (patch)
tree177855d276d1c216598a7ec68ce2bb1412e384a4 /libstdc++/complex
parent4322eb6c0ee5bac01fbca9846438084d33367120 (diff)
downloadgcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.zip
gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.tar.gz
gcc-22fdd65e5971ec8f15368ba77046ce8c6c3cb329.tar.bz2
Remove V2 C++ library.
* configure.in: Remove --enable-libstdcxx_v3 support. * Makefile.in (site.exp): Always set HAVE_LIBSTDCXX_V3. * configure.in: Remove --enable-libstdcxx_v3 support. * configure: Regenerated. From-SVN: r39445
Diffstat (limited to 'libstdc++/complex')
-rw-r--r--libstdc++/complex18
1 files changed, 0 insertions, 18 deletions
diff --git a/libstdc++/complex b/libstdc++/complex
deleted file mode 100644
index bfdd352..0000000
--- a/libstdc++/complex
+++ /dev/null
@@ -1,18 +0,0 @@
-// Main header for the -*- C++ -*- complex number classes.
-// This file is part of the GNU ANSI C++ Library.
-
-#ifndef __COMPLEX__
-#define __COMPLEX__
-
-#include <std/complext.h>
-
-extern "C++" {
-#define __STD_COMPLEX
-
-// ANSI complex types
-typedef complex<float> float_complex;
-typedef complex<double> double_complex;
-typedef complex<long double> long_double_complex;
-}
-
-#endif