diff options
author | a-romanov <[email protected]> | 2022-02-10 16:48:10 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:10 +0300 |
commit | aa2986a34bde73b2cdcea5080c4443b7cf2ba686 (patch) | |
tree | 410fbde59311309b774a0da147f79628c3429a2c /util/generic/vector_ut.cpp | |
parent | e77cfd118321c5b9c168fdee41b4e6c5706b8f68 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/vector_ut.cpp')
-rw-r--r-- | util/generic/vector_ut.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/vector_ut.cpp b/util/generic/vector_ut.cpp index 0f6b4037a00..dbb51ac5fce 100644 --- a/util/generic/vector_ut.cpp +++ b/util/generic/vector_ut.cpp @@ -2,7 +2,7 @@ #include <library/cpp/testing/unittest/registar.h> -#include <utility> +#include <utility> #include "yexception.h" #include <stdexcept> @@ -47,7 +47,7 @@ private: UNIT_ASSERT_VALUES_EQUAL(100, c1.at(0)); UNIT_ASSERT_VALUES_EQUAL(200, c2.at(1)); - container c3(std::move(c1)); + container c3(std::move(c1)); UNIT_ASSERT_VALUES_EQUAL(0, c1.size()); UNIT_ASSERT_VALUES_EQUAL(2, c3.size()); @@ -61,7 +61,7 @@ private: UNIT_ASSERT_VALUES_EQUAL(300, c3.at(2)); c2.push_back(400); - c3 = std::move(c2); + c3 = std::move(c2); UNIT_ASSERT_VALUES_EQUAL(0, c2.size()); UNIT_ASSERT_VALUES_EQUAL(4, c3.size()); |