diff options
author | mvel <mvel@yandex-team.ru> | 2022-02-10 16:45:41 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:41 +0300 |
commit | bd30392c4cc92487950adc375c07adf52da1d592 (patch) | |
tree | e8d1a3f19b7fc890bcef6e4cc5de41f1d88c9ac3 /util/generic/utility_ut.cpp | |
parent | 5d50718e66d9c037dc587a0211110b7d25a66185 (diff) | |
download | ydb-bd30392c4cc92487950adc375c07adf52da1d592.tar.gz |
Restoring authorship annotation for <mvel@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/utility_ut.cpp')
-rw-r--r-- | util/generic/utility_ut.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/util/generic/utility_ut.cpp b/util/generic/utility_ut.cpp index 8e9d5afff9..270f57e64a 100644 --- a/util/generic/utility_ut.cpp +++ b/util/generic/utility_ut.cpp @@ -5,23 +5,23 @@ // DO_NOT_STYLE -class TTest { -public: - inline TTest(int val) - : Val(val) - { - } +class TTest { +public: + inline TTest(int val) + : Val(val) + { + } - inline void Swap(TTest& t) { - DoSwap(Val, t.Val); - } + inline void Swap(TTest& t) { + DoSwap(Val, t.Val); + } - int Val; + int Val; -private: - TTest(const TTest&); - TTest& operator=(const TTest&); -}; +private: + TTest(const TTest&); + TTest& operator=(const TTest&); +}; struct TUnorderedTag { TStringBuf Tag; @@ -34,7 +34,7 @@ static bool operator<(const TUnorderedTag, const TUnorderedTag) { static bool operator>(const TUnorderedTag, const TUnorderedTag) = delete; Y_UNIT_TEST_SUITE(TUtilityTest) { - + Y_UNIT_TEST(TestSwapPrimitive) { int i = 0; int j = 1; |