fix DateDifference::operator== (#762)
This commit is contained in:
@@ -38,7 +38,7 @@ namespace CalculatorApp
|
|||||||
|
|
||||||
bool operator==(const DateDifference& dd) const
|
bool operator==(const DateDifference& dd) const
|
||||||
{
|
{
|
||||||
return year == dd.year && month == dd.month && week == dd.week && day == day;
|
return year == dd.year && month == dd.month && week == dd.week && day == dd.day;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user