compare Tasks directly, not their properties
This commit is contained in:
committed by
Tomas Babej
parent
ac24ec1387
commit
e768e2c100
@@ -114,6 +114,12 @@ bool Task::operator== (const Task& other)
|
||||
return true;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool Task::operator!= (const Task& other)
|
||||
{
|
||||
return !(*this == other);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Task::Task (const std::string& input)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user