aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2001-03-27 19:40:46 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2001-03-27 19:40:46 +0000
commitec0104b3bc0c3adcda826a1a8c6749e076a597e3 (patch)
tree6719c715cb0093ada927a4995c5ff770e91af71b
parent6fd7b97d7ddbcdb83b46c14491cec943f23ecd04 (diff)
downloadgcc-ec0104b3bc0c3adcda826a1a8c6749e076a597e3.zip
gcc-ec0104b3bc0c3adcda826a1a8c6749e076a597e3.tar.gz
gcc-ec0104b3bc0c3adcda826a1a8c6749e076a597e3.tar.bz2
c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.
2001-03-27 Benjamin Kosnik <bkoz@redhat.com> * include/bits/c++config (_STL_USE_CONCEPT_CHECKS): Disable by default. From-SVN: r40877
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/bits/c++config9
2 files changed, 7 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 8bc753d..8c5dd14 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-27 Benjamin Kosnik <bkoz@redhat.com>
+
+ * include/bits/c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.
+
2001-03-26 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
* libstdc++-v3/tests_flags.in: Change the order of libstdc++
diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config
index 7a086aa..2a007f9 100644
--- a/libstdc++-v3/include/bits/c++config
+++ b/libstdc++-v3/include/bits/c++config
@@ -63,12 +63,9 @@
# define __STL_UITHREADS
#endif
-// Concept-checking code is on by default unless users define
-// the _STL_NO_CONCEPT_CHECKS hook.
-//#define _STL_NO_CONCEPT_CHECKS 1
-#if !defined(_STL_NO_CONCEPT_CHECKS)
-# define __STL_USE_CONCEPT_CHECKS
-#endif
+// Concept-checking code is off by default unless users define
+// the _STL_USE_CONCEPT_CHECKS hook.
+//#define _STL_USE_CONCEPT_CHECKS 1
// This is also a user hook, but via -f[no-]exceptions, not direct #defines.
#ifdef __EXCEPTIONS