fix(Core): Use more accurate time constant definition for year. (#24292)
This commit is contained in:
parent
9785d5cc16
commit
a3a7435ac3
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ constexpr auto HOUR = MINUTE * 60;
|
|||
constexpr auto DAY = HOUR * 24;
|
||||
constexpr auto WEEK = DAY * 7;
|
||||
constexpr auto MONTH = DAY * 30;
|
||||
constexpr auto YEAR = MONTH * 12;
|
||||
constexpr auto YEAR = DAY * 365;
|
||||
constexpr auto IN_MILLISECONDS = 1000;
|
||||
|
||||
enum AccountTypes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue