Вот то, что работает в последней версии QT IDE под Windows 7 (boost.1.48)
class Employee {
public:
int Id;
...
bool operator==(const Employee& other) {
qDebug() << this->Id << ":" << "compare with " << other.Id;
return this->Id==other.Id;
}
}
код тестирования:
Employee jack1;
jack1 == jack1; // the operator== gets invoked.
shared_ptr<Employee> jack(new Employee);
jack == jack; // the operator== doesn't get invoked.
Соответствующий код в файле заголовка повышенияis:
template<class T, class U> inline bool operator==(shared_ptr<T> const & a, shared_ptr<U> const & b)
{
return a.get() == b.get();
}
Кажется, что он выполняет сравнение указателей вместо того, что я ожидаю.
Что я делаю неправильно?