mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 05:43:10 -07:00
fix DateDifference::operator== (#762)
This commit is contained in:
parent
e38e911bfa
commit
613aaebf6f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue