aboutsummaryrefslogtreecommitdiffstats
path: root/util/draft/datetime.cpp
diff options
context:
space:
mode:
authorvlmarkov <vlmarkov@yandex-team.ru>2022-02-10 16:46:06 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:06 +0300
commit6a382399c9a1053abd7d772ec30ca9873f7429a1 (patch)
treef13f43c75b816da6bd8ee13cda92798d3956663f /util/draft/datetime.cpp
parentce2ad6f6a6f6025e37fb7f8debe7cefd3aa2307c (diff)
downloadydb-6a382399c9a1053abd7d772ec30ca9873f7429a1.tar.gz
Restoring authorship annotation for <vlmarkov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/draft/datetime.cpp')
-rw-r--r--util/draft/datetime.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/draft/datetime.cpp b/util/draft/datetime.cpp
index 5cbe7d8847..33b9152432 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);
}