diff options
| author | dgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-21 17:12:09 +0000 |
|---|---|---|
| committer | dgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-21 17:12:09 +0000 |
| commit | 35cd7b2977ae15970bc6cd083216b33ea837060c (patch) | |
| tree | d33dd43fb85df4e291177554b2c36b6d523ea5cf | |
| parent | 3f916c66033ae92c353f83525b549075fbe31d8c (diff) | |
| download | ppe42-gcc-35cd7b2977ae15970bc6cd083216b33ea837060c.tar.gz ppe42-gcc-35cd7b2977ae15970bc6cd083216b33ea837060c.zip | |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69636 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 601e091cc6e..4870244c609 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 f6e3b08d101..b8bce64b8c4 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; }; |

