diff options
author | babenko <babenko@yandex-team.com> | 2024-01-27 16:19:45 +0300 |
---|---|---|
committer | babenko <babenko@yandex-team.com> | 2024-01-27 16:42:19 +0300 |
commit | bbacc05ccfcee10c65bc0c3da9bb2d266ec41833 (patch) | |
tree | 32b0f60354641ae6c917623f1cd6256a3ce088ed /library/cpp/yt/string/unittests/enum_ut.cpp | |
parent | 6e1358a430ae27360d66469823eb84f18a5342c3 (diff) | |
download | ydb-bbacc05ccfcee10c65bc0c3da9bb2d266ec41833.tar.gz |
Drop TEnumIndexedVector
Diffstat (limited to 'library/cpp/yt/string/unittests/enum_ut.cpp')
-rw-r--r-- | library/cpp/yt/string/unittests/enum_ut.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/cpp/yt/string/unittests/enum_ut.cpp b/library/cpp/yt/string/unittests/enum_ut.cpp index 91a8b04500..2c368e85d4 100644 --- a/library/cpp/yt/string/unittests/enum_ut.cpp +++ b/library/cpp/yt/string/unittests/enum_ut.cpp @@ -14,7 +14,6 @@ namespace { DEFINE_ENUM(ESample, (One)(Two)); static_assert(TFormatTraits<ESample>::HasCustomFormatValue); static_assert(TFormatTraits<TEnumIndexedArray<ESample, int>>::HasCustomFormatValue); -static_assert(TFormatTraits<TEnumIndexedVector<ESample, int>>::HasCustomFormatValue); DEFINE_ENUM(EColor, (Red) |