diff options
author | monoid <monoid@yandex-team.ru> | 2022-02-10 16:50:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:39 +0300 |
commit | 2da5c6cbf4fd73ecb8278fda75a0ba2bd0177fab (patch) | |
tree | 1cf9d778742ca603b604a34cdab5bbc35b59fca0 | |
parent | 17cbaf6d2b820cd304e92faa6ac2e6426605cae8 (diff) | |
download | ydb-2da5c6cbf4fd73ecb8278fda75a0ba2bd0177fab.tar.gz |
Restoring authorship annotation for <monoid@yandex-team.ru>. Commit 1 of 2.
-rw-r--r-- | library/cpp/containers/comptrie/comptrie_builder.h | 8 | ||||
-rw-r--r-- | library/cpp/containers/comptrie/comptrie_builder.inl | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/containers/comptrie/comptrie_builder.h b/library/cpp/containers/comptrie/comptrie_builder.h index cf7d2e39a3..cd16cf383b 100644 --- a/library/cpp/containers/comptrie/comptrie_builder.h +++ b/library/cpp/containers/comptrie/comptrie_builder.h @@ -93,10 +93,10 @@ public: size_t GetEntryCount() const; size_t GetNodeCount() const; - // Exact output file size in bytes. - size_t MeasureByteSize() const { - return Impl->MeasureByteSize(); - } + // Exact output file size in bytes. + size_t MeasureByteSize() const { + return Impl->MeasureByteSize(); + } protected: class TCompactTrieBuilderImpl; diff --git a/library/cpp/containers/comptrie/comptrie_builder.inl b/library/cpp/containers/comptrie/comptrie_builder.inl index f273fa6571..3ac43df7ea 100644 --- a/library/cpp/containers/comptrie/comptrie_builder.inl +++ b/library/cpp/containers/comptrie/comptrie_builder.inl @@ -91,10 +91,10 @@ public: // lies if some key was added at least twice size_t GetEntryCount() const; size_t GetNodeCount() const; - - size_t MeasureByteSize() const { - return NodeMeasureSubtree(Root); - } + + size_t MeasureByteSize() const { + return NodeMeasureSubtree(Root); + } }; template <class T, class D, class S> |