mirror of
https://github.com/boostorg/detail.git
synced 2025-08-01 05:14:28 +02:00
@@ -58,11 +58,31 @@ inline bool operator==(const blank&, const blank&)
|
|||||||
return true;
|
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&)
|
inline bool operator<(const blank&, const blank&)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool operator>(const blank&, const blank&)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// streaming support
|
// streaming support
|
||||||
//
|
//
|
||||||
BOOST_TEMPLATED_STREAM_TEMPLATE(E,T)
|
BOOST_TEMPLATED_STREAM_TEMPLATE(E,T)
|
||||||
|
Reference in New Issue
Block a user