Commit f345c6b5 by Doug Gregor Committed by Doug Gregor

* 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
parent bbda30a4
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> 2003-07-18 Andreas Jaeger <aj@suse.de>
* config/abi/sparc-linux-gnu/baseline_symbols.txt: New file. * config/abi/sparc-linux-gnu/baseline_symbols.txt: New file.
......
...@@ -213,7 +213,6 @@ struct _Aux_require_same<_Tp,_Tp> { typedef _Tp _Type; }; ...@@ -213,7 +213,6 @@ struct _Aux_require_same<_Tp,_Tp> { typedef _Tp _Type; };
{ {
void __constraints() { void __constraints() {
__aux_require_boolean_expr(__a == __b); __aux_require_boolean_expr(__a == __b);
__aux_require_boolean_expr(__a != __b);
} }
_Tp __a, __b; _Tp __a, __b;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment