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 | 094006ed2d00e01eadd1a4bfabe94c3118e769f7 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp | |
parent | 2da5c6cbf4fd73ecb8278fda75a0ba2bd0177fab (diff) | |
download | ydb-094006ed2d00e01eadd1a4bfabe94c3118e769f7.tar.gz |
Restoring authorship annotation for <monoid@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-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 cd16cf383bc..cf7d2e39a34 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 3ac43df7ea4..f273fa65710 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> |