diff options
author | babenko <babenko@yandex-team.ru> | 2022-02-10 16:49:19 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:19 +0300 |
commit | f31097c96270919a1f49360bdaaa69ea4f3fefab (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yt/misc/cast.h | |
parent | cec37806d8847aa3db53bafc9e251d4aaf325c12 (diff) | |
download | ydb-f31097c96270919a1f49360bdaaa69ea4f3fefab.tar.gz |
Restoring authorship annotation for <babenko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/misc/cast.h')
-rw-r--r-- | library/cpp/yt/misc/cast.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yt/misc/cast.h b/library/cpp/yt/misc/cast.h index 5adb3553e9..c7565c9e6d 100644 --- a/library/cpp/yt/misc/cast.h +++ b/library/cpp/yt/misc/cast.h @@ -1,7 +1,7 @@ #pragma once -#include <library/cpp/yt/exception/exception.h> - +#include <library/cpp/yt/exception/exception.h> + namespace NYT { //////////////////////////////////////////////////////////////////////////////// @@ -12,8 +12,8 @@ bool TryIntegralCast(S value, T* result); template <class T, class S> T CheckedIntegralCast(S value); -//////////////////////////////////////////////////////////////////////////////// - +//////////////////////////////////////////////////////////////////////////////// + template <class T, class S> bool TryEnumCast(S value, T* result); |