diff options
author | bulatman <[email protected]> | 2023-05-04 10:28:45 +0300 |
---|---|---|
committer | bulatman <[email protected]> | 2023-05-04 10:28:45 +0300 |
commit | 6bccf8a6c51dfc4e563317584ee71ea0637c452a (patch) | |
tree | fd2db9ebc1482d68aacfd1353bfcb8d6243f56a4 /util/datetime/systime.cpp | |
parent | 5a38c255b846d4bdaa221ca12c63d43f98033416 (diff) |
Remove using of extra semicolons in util
Diffstat (limited to 'util/datetime/systime.cpp')
-rw-r--r-- | util/datetime/systime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datetime/systime.cpp b/util/datetime/systime.cpp index 149d715e09d..aa935b7cf57 100644 --- a/util/datetime/systime.cpp +++ b/util/datetime/systime.cpp @@ -161,7 +161,7 @@ namespace { for (int year = UNIX_TIME_BASE_YEAR + 1; year < UNIX_TIME_BASE_YEAR + TableSize; ++year) { DaysSinceEpoch[year - UNIX_TIME_BASE_YEAR] = DaysSinceEpoch[year - UNIX_TIME_BASE_YEAR - 1] + YearSize(year); } - }; + } // lookup year by days since epoch, decrement day counter to the corresponding amount of days. // The method returns the last year in the table, if year is too big |