diff options
author | filmih <filmih@yandex-team.ru> | 2022-02-10 16:49:59 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:59 +0300 |
commit | 883c643baf3a1698f0f0a31a8973b61411cd311f (patch) | |
tree | ab1d02c25264bef4a13b139e1b2acbf520b3fee6 /library/cpp/containers | |
parent | 4def7550a4a9107382d501b6fe9bcfcc3d765229 (diff) | |
download | ydb-883c643baf3a1698f0f0a31a8973b61411cd311f.tar.gz |
Restoring authorship annotation for <filmih@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/containers')
-rw-r--r-- | library/cpp/containers/comptrie/comptrie_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/containers/comptrie/comptrie_impl.cpp b/library/cpp/containers/comptrie/comptrie_impl.cpp index a116ab6d1e..892fac1d48 100644 --- a/library/cpp/containers/comptrie/comptrie_impl.cpp +++ b/library/cpp/containers/comptrie/comptrie_impl.cpp @@ -31,7 +31,7 @@ namespace NCompactTrie { void ShowProgress(size_t n) { if (n % 1000000 == 0) - Cerr << n << ", RSS=" << (TRusage::Get().MaxRss >> 20) << "mb" << Endl; + Cerr << n << ", RSS=" << (TRusage::Get().MaxRss >> 20) << "mb" << Endl; else if (n % 20000 == 0) Cerr << "."; } |