fix DateDifference::operator== (#762)

This commit is contained in:
Rudy Huyn
2019-11-05 16:51:03 -08:00
committed by GitHub
parent e38e911bfa
commit 613aaebf6f

View File

@@ -38,7 +38,7 @@ namespace CalculatorApp
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;
}
};