Skip to content

Commit

Permalink
Cleanup parenths
Browse files Browse the repository at this point in the history
  • Loading branch information
wichtounet committed Sep 25, 2023
1 parent fd3016e commit a7856a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/date.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ struct date {
// Update the year if necessary
if(_month > 12){
*this += years((_month - 1) / 12);
_month = (_month) % 12;
_month = _month % 12;
}

// Update the day of month, if necessary
Expand Down

0 comments on commit a7856a0

Please sign in to comment.