diff options
author | fippo <fippo@yandex-team.ru> | 2022-02-10 16:50:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:08 +0300 |
commit | 3e57c324d47a3a202cb3c5a9648d2f92103d5213 (patch) | |
tree | 6913479b0d0b22ec99bbba7c96f2f930d9095600 /util/generic/vector.h | |
parent | bebbbda5c5ff4ec70d301ac897eb8d6c8da7a9a4 (diff) | |
download | ydb-3e57c324d47a3a202cb3c5a9648d2f92103d5213.tar.gz |
Restoring authorship annotation for <fippo@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/vector.h')
-rw-r--r-- | util/generic/vector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/vector.h b/util/generic/vector.h index a5b258955a8..9af65ce7001 100644 --- a/util/generic/vector.h +++ b/util/generic/vector.h @@ -125,8 +125,8 @@ public: #endif inline void crop(size_type size) { - if (this->size() > size) { + if (this->size() > size) { this->erase(this->begin() + size, this->end()); - } - } + } + } }; |