diff options
author | babenko <[email protected]> | 2025-01-12 08:43:05 +0300 |
---|---|---|
committer | babenko <[email protected]> | 2025-01-12 09:02:29 +0300 |
commit | 6065cf56d7ca8909c36e1f5c38daac25b2e584da (patch) | |
tree | 0f0842364b043541a144ceff0b9ca45cb46fc329 /library/cpp/yt/string | |
parent | f05fb708c73e4f5a484e9546c92a9ae8c5e799e8 (diff) |
YT-18571: library/cpp/yt/small_containers -> library/cpp/yt/compact_containers
commit_hash:fc31d2770ebeffeb513c4535bd146c731b7f78fb
Diffstat (limited to 'library/cpp/yt/string')
-rw-r--r-- | library/cpp/yt/string/format-inl.h | 2 | ||||
-rw-r--r-- | library/cpp/yt/string/unittests/format_ut.cpp | 2 | ||||
-rw-r--r-- | library/cpp/yt/string/ya.make | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yt/string/format-inl.h b/library/cpp/yt/string/format-inl.h index b18c435cb86..d286f3afbbf 100644 --- a/library/cpp/yt/string/format-inl.h +++ b/library/cpp/yt/string/format-inl.h @@ -10,7 +10,7 @@ #include <library/cpp/yt/assert/assert.h> -#include <library/cpp/yt/small_containers/compact_vector.h> +#include <library/cpp/yt/compact_containers/compact_vector.h> #include <library/cpp/yt/containers/enum_indexed_array.h> diff --git a/library/cpp/yt/string/unittests/format_ut.cpp b/library/cpp/yt/string/unittests/format_ut.cpp index e6b5eb7cfec..5ec4a1ffa8b 100644 --- a/library/cpp/yt/string/unittests/format_ut.cpp +++ b/library/cpp/yt/string/unittests/format_ut.cpp @@ -2,7 +2,7 @@ #include <library/cpp/yt/string/format.h> -#include <library/cpp/yt/small_containers/compact_vector.h> +#include <library/cpp/yt/compact_containers/compact_vector.h> #include <util/generic/hash_set.h> diff --git a/library/cpp/yt/string/ya.make b/library/cpp/yt/string/ya.make index 2071e0a115a..11926fec185 100644 --- a/library/cpp/yt/string/ya.make +++ b/library/cpp/yt/string/ya.make @@ -15,7 +15,7 @@ PEERDIR( library/cpp/yt/assert library/cpp/yt/exception library/cpp/yt/misc - library/cpp/yt/small_containers + library/cpp/yt/compact_containers ) CHECK_DEPENDENT_DIRS( @@ -26,7 +26,7 @@ CHECK_DEPENDENT_DIRS( util library/cpp/yt/assert library/cpp/yt/misc - library/cpp/yt/small_containers + library/cpp/yt/compact_containers ) END() |