c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.
authorBenjamin Kosnik <bkoz@redhat.com>
Tue, 27 Mar 2001 19:40:46 +0000 (19:40 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 27 Mar 2001 19:40:46 +0000 (19:40 +0000)
2001-03-27  Benjamin Kosnik  <bkoz@redhat.com>

* include/bits/c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.

From-SVN: r40877

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/c++config

index 8bc753d048349ca249a779090cecca69f4fd1727..8c5dd1412654feb70a2d12e96fee3c89391df0b3 100644 (file)
@@ -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++
index 7a086aa4f8b11d9d0069e7c906a4facf8d46c49c..2a007f936393824669f7bb69007f8d3b7be8ec9d 100644 (file)
 #    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