aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/containers
diff options
context:
space:
mode:
authorbacek <bacek@yandex-team.ru>2022-02-10 16:50:41 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:41 +0300
commit0553296cd6ee50cfbfe55bfeb2c5956c03e66c92 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/containers
parent565d88a9457d5bc167ff11fc4c566ded341ebaf4 (diff)
downloadydb-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.h2
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;
}
};