Example #1
0
bool operator<(status const& lhs, status const& rhs)
{
    return lhs.get_code() < rhs.get_code();
}
Example #2
0
bool operator==(status const& lhs, status const& rhs)
{
    return lhs.get_code() == rhs.get_code();
}