diff options
author | grand <grand@yandex-team.ru> | 2022-02-10 16:50:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:07 +0300 |
commit | a0e29f0026d32a60a618a620f30035c264346175 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 | |
parent | 7eb3862cccdb866e7e739123c8024ccec628bb62 (diff) | |
download | ydb-a0e29f0026d32a60a618a620f30035c264346175.tar.gz |
Restoring authorship annotation for <grand@yandex-team.ru>. Commit 2 of 2.
25 files changed, 76 insertions, 76 deletions
diff --git a/library/cpp/cgiparam/cgiparam.cpp b/library/cpp/cgiparam/cgiparam.cpp index 995ccfcf49..f3277b8e4b 100644 --- a/library/cpp/cgiparam/cgiparam.cpp +++ b/library/cpp/cgiparam/cgiparam.cpp @@ -6,11 +6,11 @@ #include <util/generic/singleton.h> TCgiParameters::TCgiParameters(std::initializer_list<std::pair<TString, TString>> il) { - for (const auto& item : il) { - insert(item); - } -} - + for (const auto& item : il) { + insert(item); + } +} + const TString& TCgiParameters::Get(const TStringBuf name, size_t numOfValue) const noexcept { const auto it = Find(name, numOfValue); diff --git a/library/cpp/cgiparam/cgiparam.h b/library/cpp/cgiparam/cgiparam.h index afb7ed3bb7..87d1ab0ad4 100644 --- a/library/cpp/cgiparam/cgiparam.h +++ b/library/cpp/cgiparam/cgiparam.h @@ -7,7 +7,7 @@ #include <util/generic/strbuf.h> #include <util/generic/string.h> -#include <initializer_list> +#include <initializer_list> struct TStringLess { template <class T1, class T2> @@ -25,7 +25,7 @@ public: } TCgiParameters(std::initializer_list<std::pair<TString, TString>> il); - + void Flush() { erase(begin(), end()); } diff --git a/library/cpp/cgiparam/cgiparam_ut.cpp b/library/cpp/cgiparam/cgiparam_ut.cpp index 359e387776..a562342084 100644 --- a/library/cpp/cgiparam/cgiparam_ut.cpp +++ b/library/cpp/cgiparam/cgiparam_ut.cpp @@ -204,7 +204,7 @@ Y_UNIT_TEST_SUITE(TCgiParametersTest) { } Y_UNIT_TEST(TestContInit) { - TCgiParameters c = {std::make_pair("a", "a1"), std::make_pair("b", "b1"), std::make_pair("a", "a2")}; + TCgiParameters c = {std::make_pair("a", "a1"), std::make_pair("b", "b1"), std::make_pair("a", "a2")}; UNIT_ASSERT_VALUES_EQUAL(c.NumOfValues("a"), 2u); UNIT_ASSERT_VALUES_EQUAL(c.NumOfValues("b"), 1u); diff --git a/library/cpp/containers/comptrie/comptrie_ut.cpp b/library/cpp/containers/comptrie/comptrie_ut.cpp index a133a6faac..74bee09b5d 100644 --- a/library/cpp/containers/comptrie/comptrie_ut.cpp +++ b/library/cpp/containers/comptrie/comptrie_ut.cpp @@ -1039,7 +1039,7 @@ public: typedef T TData; static TData Data(const TString&) { - return RandomNumber<std::make_unsigned_t<T>>(); + return RandomNumber<std::make_unsigned_t<T>>(); } }; diff --git a/library/cpp/containers/sorted_vector/sorted_vector.h b/library/cpp/containers/sorted_vector/sorted_vector.h index cf349875e9..123539af9e 100644 --- a/library/cpp/containers/sorted_vector/sorted_vector.h +++ b/library/cpp/containers/sorted_vector/sorted_vector.h @@ -8,8 +8,8 @@ #include <util/ysaveload.h> #include <utility> -#include <initializer_list> - +#include <initializer_list> + namespace NSorted { namespace NPrivate { template <class TPredicate> @@ -80,18 +80,18 @@ namespace NSorted { { } - inline TSortedVector(std::initializer_list<value_type> il) - : TBase(il) - { - Sort(); - } - - inline TSortedVector(std::initializer_list<value_type> il, const typename TBase::allocator_type& a) - : TBase(il, a) - { - Sort(); - } - + inline TSortedVector(std::initializer_list<value_type> il) + : TBase(il) + { + Sort(); + } + + inline TSortedVector(std::initializer_list<value_type> il, const typename TBase::allocator_type& a) + : TBase(il, a) + { + Sort(); + } + template <class TIter> inline TSortedVector(TIter first, TIter last) : TBase(first, last) diff --git a/library/cpp/coroutine/ya.make b/library/cpp/coroutine/ya.make index 90d03c5cbc..34e30f2b25 100644 --- a/library/cpp/coroutine/ya.make +++ b/library/cpp/coroutine/ya.make @@ -6,6 +6,6 @@ RECURSE( engine/stack/ut listener test - ut + ut util ) diff --git a/library/cpp/dbg_output/ut/dbg_output_ut.cpp b/library/cpp/dbg_output/ut/dbg_output_ut.cpp index dfa65c2d8e..7b285c84cb 100644 --- a/library/cpp/dbg_output/ut/dbg_output_ut.cpp +++ b/library/cpp/dbg_output/ut/dbg_output_ut.cpp @@ -4,7 +4,7 @@ #include <util/stream/str.h> #include <util/string/builder.h> #include <util/string/escape.h> -#include <util/generic/map.h> +#include <util/generic/map.h> namespace { struct TX { diff --git a/library/cpp/deprecated/split/delim_string_iter_ut.cpp b/library/cpp/deprecated/split/delim_string_iter_ut.cpp index 997d5f32f9..18a8b2a160 100644 --- a/library/cpp/deprecated/split/delim_string_iter_ut.cpp +++ b/library/cpp/deprecated/split/delim_string_iter_ut.cpp @@ -19,16 +19,16 @@ static void AssertStringSplit(const TString& str, const TString& delim, const TV Y_UNIT_TEST_SUITE(TDelimStrokaIterTestSuite) { Y_UNIT_TEST(SingleCharacterAsDelimiter) { AssertStringSplit( - "Hello words!", " ", {"Hello", "words!"}); + "Hello words!", " ", {"Hello", "words!"}); } Y_UNIT_TEST(MultipleCharactersAsDelimiter) { AssertStringSplit( - "0, 1, 1, 2, 3, 5, 8, 13, 21, 34", "1, ", {"0, ", "", "2, 3, 5, 8, 13, 2", "34"}); + "0, 1, 1, 2, 3, 5, 8, 13, 21, 34", "1, ", {"0, ", "", "2, 3, 5, 8, 13, 2", "34"}); } Y_UNIT_TEST(NoDelimitersPresent) { - AssertStringSplit("This string could be yours", "\t", {"This string could be yours"}); + AssertStringSplit("This string could be yours", "\t", {"This string could be yours"}); } Y_UNIT_TEST(Cdr) { diff --git a/library/cpp/deprecated/split/split_iterator_ut.cpp b/library/cpp/deprecated/split/split_iterator_ut.cpp index 717c8ed505..be5069c4be 100644 --- a/library/cpp/deprecated/split/split_iterator_ut.cpp +++ b/library/cpp/deprecated/split/split_iterator_ut.cpp @@ -38,7 +38,7 @@ void TSplitIteratorTest::TestDelimitersSplit() { TDelimitersSplit split(s, delims); TSplitTokens tokens; Split(split, &tokens); - TSplitTokens pattern = {"1", "3", "45"}; + TSplitTokens pattern = {"1", "3", "45"}; UNIT_ASSERT(tokens == pattern); } { @@ -47,7 +47,7 @@ void TSplitIteratorTest::TestDelimitersSplit() { TDelimitersSplit split(s, delims); TSplitTokens tokens; Split(split, &tokens); - TSplitTokens pattern = {}; + TSplitTokens pattern = {}; UNIT_ASSERT(tokens == pattern); } } @@ -59,7 +59,7 @@ void TSplitIteratorTest::TestDelimitersStrictSplit() { TDelimitersStrictSplit split(s, delims); TSplitTokens tokens; Split(split, &tokens); - TSplitTokens pattern = {"grp", "2"}; + TSplitTokens pattern = {"grp", "2"}; UNIT_ASSERT(tokens == pattern); } @@ -69,7 +69,7 @@ void TSplitIteratorTest::TestDelimitersStrictSplit() { TDelimitersStrictSplit split(s, delims); TSplitTokens tokens; Split(split, &tokens); - TSplitTokens pattern = {"", "grp", "2", ""}; + TSplitTokens pattern = {"", "grp", "2", ""}; UNIT_ASSERT(tokens == pattern); } } diff --git a/library/cpp/messagebus/rain_check/core/simple.h b/library/cpp/messagebus/rain_check/core/simple.h index 8ebc813fbb..20e1bf19f5 100644 --- a/library/cpp/messagebus/rain_check/core/simple.h +++ b/library/cpp/messagebus/rain_check/core/simple.h @@ -27,7 +27,7 @@ namespace NRainCheck { TContinueFunc(TContinueFunc (TTask::*func)()) : Func((TFunc)func) { - static_assert((std::is_base_of<ISimpleTask, TTask>::value), "expect (std::is_base_of<ISimpleTask, TTask>::value)"); + static_assert((std::is_base_of<ISimpleTask, TTask>::value), "expect (std::is_base_of<ISimpleTask, TTask>::value)"); } bool operator!() const { diff --git a/library/cpp/messagebus/rain_check/core/spawn.h b/library/cpp/messagebus/rain_check/core/spawn.h index 4b847a4854..f2b146bf29 100644 --- a/library/cpp/messagebus/rain_check/core/spawn.h +++ b/library/cpp/messagebus/rain_check/core/spawn.h @@ -10,7 +10,7 @@ namespace NRainCheck { template <typename TTask, typename ITask, typename TRunner, typename TEnv, typename TParam> TIntrusivePtr<TRunner> SpawnTaskWithRunner(TEnv* env, TParam param1, ISubtaskListener* subtaskListener) { - static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); + static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); TIntrusivePtr<TRunner> task(new TRunner(env, subtaskListener, new TTask(env, param1))); NPrivate::SpawnTaskImpl(task.Get()); return task; @@ -18,7 +18,7 @@ namespace NRainCheck { template <typename TTask, typename ITask, typename TRunner, typename TEnv> void SpawnSubtaskWithRunner(TEnv* env, TSubtaskCompletion* completion) { - static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); + static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); TTaskRunnerBase* current = TTaskRunnerBase::CurrentTask(); completion->SetRunning(current); NPrivate::SpawnTaskImpl(new TRunner(env, completion, new TTask(env))); @@ -26,7 +26,7 @@ namespace NRainCheck { template <typename TTask, typename ITask, typename TRunner, typename TEnv, typename TParam> void SpawnSubtaskWithRunner(TEnv* env, TSubtaskCompletion* completion, TParam param) { - static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); + static_assert((std::is_base_of<ITask, TTask>::value), "expect (std::is_base_of<ITask, TTask>::value)"); TTaskRunnerBase* current = TTaskRunnerBase::CurrentTask(); completion->SetRunning(current); NPrivate::SpawnTaskImpl(new TRunner(env, completion, new TTask(env, param))); diff --git a/library/cpp/messagebus/rain_check/core/task.h b/library/cpp/messagebus/rain_check/core/task.h index 3ae4551a0d..7d8778bcda 100644 --- a/library/cpp/messagebus/rain_check/core/task.h +++ b/library/cpp/messagebus/rain_check/core/task.h @@ -45,7 +45,7 @@ namespace NRainCheck { TSubtaskCompletionFunc(void (TTask::*func)(TSubtaskCompletion*)) : Func((TFunc)func) { - static_assert((std::is_base_of<ITaskBase, TTask>::value), "expect (std::is_base_of<ITaskBase, TTask>::value)"); + static_assert((std::is_base_of<ITaskBase, TTask>::value), "expect (std::is_base_of<ITaskBase, TTask>::value)"); } bool operator!() const { diff --git a/library/cpp/packedtypes/zigzag.h b/library/cpp/packedtypes/zigzag.h index 08854ea48e..548403f838 100644 --- a/library/cpp/packedtypes/zigzag.h +++ b/library/cpp/packedtypes/zigzag.h @@ -8,14 +8,14 @@ //! See https://developers.google.com/protocol-buffers/docs/encoding#types for details. template <typename TSignedInt> -inline auto ZigZagEncode(TSignedInt n) -> std::make_unsigned_t<TSignedInt> { +inline auto ZigZagEncode(TSignedInt n) -> std::make_unsigned_t<TSignedInt> { static_assert(std::is_signed<TSignedInt>::value && std::is_integral<TSignedInt>::value, "Expected signed integral type."); auto un = static_cast<std::make_unsigned_t<TSignedInt>>(n); return (un << 1) ^ (n >> (CHAR_BIT * sizeof(TSignedInt) - 1)); } template <typename TUnsignedInt> -inline auto ZigZagDecode(TUnsignedInt n) -> std::make_signed_t<TUnsignedInt> { +inline auto ZigZagDecode(TUnsignedInt n) -> std::make_signed_t<TUnsignedInt> { static_assert(std::is_unsigned<TUnsignedInt>::value, "Expected unsigned integral type."); - return (n >> 1) ^ -static_cast<std::make_signed_t<TUnsignedInt>>(n & 1); + return (n >> 1) ^ -static_cast<std::make_signed_t<TUnsignedInt>>(n & 1); } diff --git a/util/generic/bitmap_ut.cpp b/util/generic/bitmap_ut.cpp index ff3ef9f840..087d34a8dc 100644 --- a/util/generic/bitmap_ut.cpp +++ b/util/generic/bitmap_ut.cpp @@ -529,7 +529,7 @@ Y_UNIT_TEST_SUITE(TBitMapTest) { } Y_UNIT_TEST(TestHashMixed) { - static_assert((std::is_same<TDynBitMap::TChunk, ui64>::value), "expect (TSameType<TDynBitMap::TChunk, ui64>::Result)"); + static_assert((std::is_same<TDynBitMap::TChunk, ui64>::value), "expect (TSameType<TDynBitMap::TChunk, ui64>::Result)"); TBitMap<sizeof(ui64) * 16, ui64> bitmapFixed; TDynBitMap bitmapDynamic; diff --git a/util/generic/typelist.h b/util/generic/typelist.h index c162a38bbf..5ce26ab97c 100644 --- a/util/generic/typelist.h +++ b/util/generic/typelist.h @@ -4,8 +4,8 @@ #include <util/generic/typetraits.h> -#include <type_traits> - +#include <type_traits> + template <class... R> struct TTypeList; diff --git a/util/generic/typetraits_ut.cpp b/util/generic/typetraits_ut.cpp index 5568aea7c2..e7571c75ec 100644 --- a/util/generic/typetraits_ut.cpp +++ b/util/generic/typetraits_ut.cpp @@ -72,10 +72,10 @@ namespace { }; } -#define ASSERT_SAME_TYPE(x, y) \ - { \ - const bool x_ = std::is_same<x, y>::value; \ - UNIT_ASSERT_C(x_, #x " != " #y); \ +#define ASSERT_SAME_TYPE(x, y) \ + { \ + const bool x_ = std::is_same<x, y>::value; \ + UNIT_ASSERT_C(x_, #x " != " #y); \ } Y_UNIT_TEST_SUITE(TTypeTraitsTest) { @@ -132,9 +132,9 @@ Y_UNIT_TEST_SUITE(TTypeTraitsTest) { bool a; - a = std::is_same<typename TTypeTraits<T>::TFuncParam, T>::value; + a = std::is_same<typename TTypeTraits<T>::TFuncParam, T>::value; UNIT_ASSERT(a); - a = std::is_same<typename TTypeTraits<const volatile T>::TFuncParam, const volatile T>::value; + a = std::is_same<typename TTypeTraits<const volatile T>::TFuncParam, const volatile T>::value; UNIT_ASSERT(a); } diff --git a/util/generic/xrange_ut.cpp b/util/generic/xrange_ut.cpp index 4575030792..8106da03e7 100644 --- a/util/generic/xrange_ut.cpp +++ b/util/generic/xrange_ut.cpp @@ -46,22 +46,22 @@ Y_UNIT_TEST_SUITE(XRange) { } Y_UNIT_TEST(DecrementWorks) { - TestSteppedXRangeImpl(10, 0, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}); - TestSteppedXRangeImpl(10, -1, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}); - TestSteppedXRangeImpl(20, 9, -1, {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10}); + TestSteppedXRangeImpl(10, 0, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}); + TestSteppedXRangeImpl(10, -1, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}); + TestSteppedXRangeImpl(20, 9, -1, {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10}); } Y_UNIT_TEST(StepWorks) { - TestSteppedXRangeImpl(0, 0, 1, {}); - TestSteppedXRangeImpl(0, 9, 3, {0, 3, 6}); - TestSteppedXRangeImpl(0, 10, 3, {0, 3, 6, 9}); - TestSteppedXRangeImpl(0, 11, 3, {0, 3, 6, 9}); - TestSteppedXRangeImpl(0, 12, 3, {0, 3, 6, 9}); - TestSteppedXRangeImpl(0, 13, 3, {0, 3, 6, 9, 12}); - TestSteppedXRangeImpl(0, 10, 2, {0, 2, 4, 6, 8}); - TestSteppedXRangeImpl(15, 0, -4, {15, 11, 7, 3}); - TestSteppedXRangeImpl(15, -1, -4, {15, 11, 7, 3}); - TestSteppedXRangeImpl(15, -2, -4, {15, 11, 7, 3, -1}); + TestSteppedXRangeImpl(0, 0, 1, {}); + TestSteppedXRangeImpl(0, 9, 3, {0, 3, 6}); + TestSteppedXRangeImpl(0, 10, 3, {0, 3, 6, 9}); + TestSteppedXRangeImpl(0, 11, 3, {0, 3, 6, 9}); + TestSteppedXRangeImpl(0, 12, 3, {0, 3, 6, 9}); + TestSteppedXRangeImpl(0, 13, 3, {0, 3, 6, 9, 12}); + TestSteppedXRangeImpl(0, 10, 2, {0, 2, 4, 6, 8}); + TestSteppedXRangeImpl(15, 0, -4, {15, 11, 7, 3}); + TestSteppedXRangeImpl(15, -1, -4, {15, 11, 7, 3}); + TestSteppedXRangeImpl(15, -2, -4, {15, 11, 7, 3, -1}); } Y_UNIT_TEST(PointersWorks) { diff --git a/util/string/join.h b/util/string/join.h index 9d9479b1c2..b166fad1f3 100644 --- a/util/string/join.h +++ b/util/string/join.h @@ -173,7 +173,7 @@ inline TBasicString<TCharType> JoinSeq(std::basic_string_view<TCharType> delim, using std::end; return JoinRange(delim, begin(data), end(data)); } - + template <typename TCharType, typename TContainer> inline TBasicString<TCharType> JoinSeq(const TCharType* delim, const TContainer& data) { TBasicStringBuf<TCharType> delimBuf = delim; @@ -252,13 +252,13 @@ constexpr auto MakeRangeJoiner(TStringBuf delim, const std::initializer_list<TVa * If someone needs to join std::initializer_list<TString> -- it still works because of the TContainer template above. */ -template <typename T> +template <typename T> inline std::enable_if_t< !std::is_same<std::decay_t<T>, TString>::value && !std::is_same<std::decay_t<T>, const char*>::value, TString> JoinSeq(const TStringBuf delim, const std::initializer_list<T>& data) { - return JoinRange(delim, data.begin(), data.end()); -} + return JoinRange(delim, data.begin(), data.end()); +} inline TString JoinSeq(const TStringBuf delim, const std::initializer_list<TStringBuf>& data) { return JoinRange(delim, data.begin(), data.end()); diff --git a/util/string/join_ut.cpp b/util/string/join_ut.cpp index d69442d18b..3ed2b2459c 100644 --- a/util/string/join_ut.cpp +++ b/util/string/join_ut.cpp @@ -34,7 +34,7 @@ Y_UNIT_TEST_SUITE(JoinStringTest) { UNIT_ASSERT_EQUAL(JoinRange(" ", v, v + 2), "1 2"); UNIT_ASSERT_EQUAL(JoinSeq(" ", {}), ""); UNIT_ASSERT_EQUAL(JoinSeq(" ", {42}), "42"); - UNIT_ASSERT_EQUAL(JoinSeq(" ", {1, 2, 3}), "1 2 3"); + UNIT_ASSERT_EQUAL(JoinSeq(" ", {1, 2, 3}), "1 2 3"); UNIT_ASSERT_VALUES_EQUAL(JoinSeq(" ", v), "1 2 3"); } diff --git a/ydb/core/blobstorage/dsproxy/dsproxy.h b/ydb/core/blobstorage/dsproxy/dsproxy.h index 761e6f40d4..27592e971f 100644 --- a/ydb/core/blobstorage/dsproxy/dsproxy.h +++ b/ydb/core/blobstorage/dsproxy/dsproxy.h @@ -19,8 +19,8 @@ #include <ydb/core/base/appdata.h> #include <ydb/core/base/group_stat.h> #include <library/cpp/containers/stack_vector/stack_vec.h> -#include <util/generic/hash_set.h> - +#include <util/generic/hash_set.h> + namespace NKikimr { LWTRACE_USING(BLOBSTORAGE_PROVIDER); diff --git a/ydb/core/blobstorage/vdisk/huge/blobstorage_hullhugeheap.h b/ydb/core/blobstorage/vdisk/huge/blobstorage_hullhugeheap.h index 04f7183da8..651117f2b9 100644 --- a/ydb/core/blobstorage/vdisk/huge/blobstorage_hullhugeheap.h +++ b/ydb/core/blobstorage/vdisk/huge/blobstorage_hullhugeheap.h @@ -6,7 +6,7 @@ #include <ydb/core/blobstorage/vdisk/common/vdisk_log.h> #include <ydb/core/blobstorage/vdisk/common/vdisk_hugeblobctx.h> #include <ydb/core/util/bits.h> -#include <util/generic/set.h> +#include <util/generic/set.h> #include <util/ysaveload.h> namespace NKikimr { diff --git a/ydb/core/blobstorage/vdisk/hullop/blobstorage_hullload.h b/ydb/core/blobstorage/vdisk/hullop/blobstorage_hullload.h index 457651523c..d08b3a04d7 100644 --- a/ydb/core/blobstorage/vdisk/hullop/blobstorage_hullload.h +++ b/ydb/core/blobstorage/vdisk/hullop/blobstorage_hullload.h @@ -5,8 +5,8 @@ #include <ydb/core/blobstorage/vdisk/common/vdisk_pdiskctx.h> #include <ydb/core/blobstorage/vdisk/hulldb/hull_ds_all.h> -#include <util/generic/hash_set.h> - +#include <util/generic/hash_set.h> + namespace NKikimr { template<typename TMemRec> diff --git a/ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeletonfront.cpp b/ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeletonfront.cpp index 26510a15eb..08c32a8921 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeletonfront.cpp +++ b/ydb/core/blobstorage/vdisk/skeleton/blobstorage_skeletonfront.cpp @@ -24,11 +24,11 @@ #include <library/cpp/monlib/service/pages/templates.h> -#include <util/generic/set.h> +#include <util/generic/set.h> #include <util/generic/maybe.h> using namespace NKikimrServices; - + namespace NKikimr { //////////////////////////////////////////////////////////////////////////// diff --git a/ydb/core/tablet_flat/flat_executor_gclogic.h b/ydb/core/tablet_flat/flat_executor_gclogic.h index ee8dcd53e9..9c1fa568a2 100644 --- a/ydb/core/tablet_flat/flat_executor_gclogic.h +++ b/ydb/core/tablet_flat/flat_executor_gclogic.h @@ -3,7 +3,7 @@ #include "flat_sausage_slicer.h" #include "flat_exec_commit.h" #include <util/generic/vector.h> -#include <util/generic/set.h> +#include <util/generic/set.h> #include <ydb/core/base/blobstorage.h> #include <ydb/core/tablet_flat/flat_executor.pb.h> diff --git a/ydb/core/tx/mediator/tablet_queue.cpp b/ydb/core/tx/mediator/tablet_queue.cpp index fe3d562f5e..b28179517c 100644 --- a/ydb/core/tx/mediator/tablet_queue.cpp +++ b/ydb/core/tx/mediator/tablet_queue.cpp @@ -13,7 +13,7 @@ #include <ydb/core/tablet/tablet_pipe_client_cache.h> #include <util/string/builder.h> -#include <util/generic/hash_set.h> +#include <util/generic/hash_set.h> namespace NKikimr { namespace NTxMediator { |