diff options
author | Doug Gregor <dgregor@apple.com> | 2003-07-21 17:12:09 +0000 |
---|---|---|
committer | Doug Gregor <dgregor@gcc.gnu.org> | 2003-07-21 17:12:09 +0000 |
commit | f345c6b5225e3d4d64686f8b045c4a7bbf016cf0 (patch) | |
tree | d33dd43fb85df4e291177554b2c36b6d523ea5cf | |
parent | bbda30a4aae700f963fd164edbeac4f4688bf2a0 (diff) | |
download | gcc-f345c6b5225e3d4d64686f8b045c4a7bbf016cf0.zip gcc-f345c6b5225e3d4d64686f8b045c4a7bbf016cf0.tar.gz gcc-f345c6b5225e3d4d64686f8b045c4a7bbf016cf0.tar.bz2 |
* 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.
From-SVN: r69636
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/boost_concept_check.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 601e091..4870244 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -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. diff --git a/libstdc++-v3/include/bits/boost_concept_check.h b/libstdc++-v3/include/bits/boost_concept_check.h index f6e3b08..b8bce64 100644 --- a/libstdc++-v3/include/bits/boost_concept_check.h +++ b/libstdc++-v3/include/bits/boost_concept_check.h @@ -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; }; |