* include/bits/boost_concept_check.h:
authorDoug Gregor <dgregor@apple.com>
Mon, 21 Jul 2003 17:12:09 +0000 (17:12 +0000)
committerDoug Gregor <dgregor@gcc.gnu.org>
Mon, 21 Jul 2003 17:12:09 +0000 (17:12 +0000)
(_EqualityComparableConcept::__constraints): Remove != from the
        list of constraints; it is not listed in Table 28 of the C++98
        standard.

From-SVN: r69636

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/boost_concept_check.h

index 601e091..4870244 100644 (file)
@@ -1,3 +1,10 @@
+2003-07-21  Doug Gregor  <dgregor@apple.com.>
+
+       * include/bits/boost_concept_check.h:
+       (_EqualityComparableConcept::__constraints): Remove != from the 
+        list of constraints; it is not listed in Table 28 of the C++98 
+        standard.
+
 2003-07-18  Andreas Jaeger  <aj@suse.de>
 
        * config/abi/sparc-linux-gnu/baseline_symbols.txt: New file.
index f6e3b08..b8bce64 100644 (file)
@@ -213,7 +213,6 @@ struct _Aux_require_same<_Tp,_Tp> { typedef _Tp _Type; };
   {
     void __constraints() {
       __aux_require_boolean_expr(__a == __b);
-      __aux_require_boolean_expr(__a != __b);
     }
     _Tp __a, __b;
   };