aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbacek <bacek@yandex-team.ru>2022-02-10 16:50:40 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:40 +0300
commit565d88a9457d5bc167ff11fc4c566ded341ebaf4 (patch)
tree8ebbb8579938795305369f03fde5057953614c79
parent373229025b6fcd70e890a8246d95ed46a8214081 (diff)
downloadydb-565d88a9457d5bc167ff11fc4c566ded341ebaf4.tar.gz
Restoring authorship annotation for <bacek@yandex-team.ru>. Commit 1 of 2.
-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 5e40f47ab9..5ddcebff38 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;
}
};