Added more relational operators, see Bug #1191356.

[SVN r31783]
This commit is contained in:
Eric Friedman
2005-11-26 05:50:55 +00:00
parent 83ada0473d
commit 9d5b0d7c0c

View File

@ -58,11 +58,31 @@ inline bool operator==(const blank&, const blank&)
return true;
}
inline bool operator<=(const blank&, const blank&)
{
return true;
}
inline bool operator>=(const blank&, const blank&)
{
return true;
}
inline bool operator!=(const blank&, const blank&)
{
return false;
}
inline bool operator<(const blank&, const blank&)
{
return false;
}
inline bool operator>(const blank&, const blank&)
{
return false;
}
// streaming support
//
BOOST_TEMPLATED_STREAM_TEMPLATE(E,T)