fix DateDifference::operator== (#762)
This commit is contained in:
parent
e38e911bfa
commit
613aaebf6f
@ -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;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user