diff options
| author | cherepashka <[email protected]> | 2025-12-25 23:42:27 +0300 |
|---|---|---|
| committer | cherepashka <[email protected]> | 2025-12-25 23:57:06 +0300 |
| commit | 6f0adc600fd8359eb6908331264658ad8d96bbe1 (patch) | |
| tree | 28e8950a7aac947c16604f583e41f9f747d6e3ea /library/cpp/yt/string | |
| parent | bb55da52dbb0637ab42d02cf6f091978faf13206 (diff) | |
YT-26137: Introduce TCompactFlatSet
commit_hash:ace2131dce6afdc09ed355bfef1983e3223ed8a4
Diffstat (limited to 'library/cpp/yt/string')
| -rw-r--r-- | library/cpp/yt/string/format-inl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/cpp/yt/string/format-inl.h b/library/cpp/yt/string/format-inl.h index 76c06e385bf..3279177dfb6 100644 --- a/library/cpp/yt/string/format-inl.h +++ b/library/cpp/yt/string/format-inl.h @@ -12,6 +12,7 @@ #include <library/cpp/yt/compact_containers/compact_vector.h> #include <library/cpp/yt/compact_containers/compact_flat_map.h> +#include <library/cpp/yt/compact_containers/compact_flat_set.h> #include <library/cpp/yt/containers/enum_indexed_array.h> @@ -168,6 +169,8 @@ template <class... Ts> constexpr bool CKnownKVRange<TCompactFlatMap<Ts...>> = true; template <class K, class V, size_t N> constexpr bool CKnownKVRange<TCompactFlatMap<K, V, N>> = true; +template <class T, size_t N> +constexpr bool CKnownRange<TCompactFlatSet<T, N>> = true; // TODO(arkady-e1ppa): Uncomment me when // https://github.com/llvm/llvm-project/issues/58534 is shipped. |
