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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
} }
}; };