Это нарушит текущий рабочий код. Представь, у меня есть
struct my_type
{
int id;
int bar;
};
namespace std {
template<>
struct less<my_type>
{
bool operator()(my_type const& lhs, my_type const& rhs)
{
return lhs.id < rhs.id; // bar doesn't need to be compared, only need unique id's in the container.
}
};
}
std::set<my_type> foo;
Если std::set
был изменен на использование std::less<void>
, то этот код больше не будет компилироваться, поскольку my_type
не имеет operator <
.