diff options
author | vlmarkov <vlmarkov@yandex-team.ru> | 2022-02-10 16:46:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:07 +0300 |
commit | dbd3185956979f21ea16ef90c1ba4aa2d6a75fae (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/draft/datetime.cpp | |
parent | 6a382399c9a1053abd7d772ec30ca9873f7429a1 (diff) | |
download | ydb-dbd3185956979f21ea16ef90c1ba4aa2d6a75fae.tar.gz |
Restoring authorship annotation for <vlmarkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/draft/datetime.cpp')
-rw-r--r-- | util/draft/datetime.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/draft/datetime.cpp b/util/draft/datetime.cpp index 33b91524324..5cbe7d88477 100644 --- a/util/draft/datetime.cpp +++ b/util/draft/datetime.cpp @@ -136,13 +136,13 @@ namespace NDatetime { return *this; case F_DAY: amount *= 24; - [[fallthrough]]; + [[fallthrough]]; case F_HOUR: amount *= 60; - [[fallthrough]]; + [[fallthrough]]; case F_MIN: amount *= 60; - [[fallthrough]]; + [[fallthrough]]; case F_SEC: { return *this = New(AsTimeT() + amount, GMTOff, IsDst); } |