diff options
author | bacek <bacek@yandex-team.ru> | 2022-02-10 16:50:41 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:41 +0300 |
commit | 0553296cd6ee50cfbfe55bfeb2c5956c03e66c92 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/containers | |
parent | 565d88a9457d5bc167ff11fc4c566ded341ebaf4 (diff) | |
download | ydb-0553296cd6ee50cfbfe55bfeb2c5956c03e66c92.tar.gz |
Restoring authorship annotation for <bacek@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/containers')
-rw-r--r-- | library/cpp/containers/atomizer/atomizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/containers/atomizer/atomizer.h b/library/cpp/containers/atomizer/atomizer.h index 5ddcebff38..5e40f47ab9 100644 --- a/library/cpp/containers/atomizer/atomizer.h +++ b/library/cpp/containers/atomizer/atomizer.h @@ -100,7 +100,7 @@ public: } order.resize(km); memset(&order[0], 0, order.size()); // if some atoms are absent - for (const_iterator I = this->begin(); I != end(); ++I) + for (const_iterator I = this->begin(); I != end(); ++I) order[(*I).second - 1] = (*I).first; } }; |