diff options
author | onpopov <onpopov@yandex-team.ru> | 2022-02-10 16:50:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:38 +0300 |
commit | 8773f7661194d4c0bdb1e3937b2ff7ae01dd13f8 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/containers/comptrie/writeable_node.cpp | |
parent | 84a29dd4980d5b39615e453f289bd1a81213296d (diff) | |
download | ydb-8773f7661194d4c0bdb1e3937b2ff7ae01dd13f8.tar.gz |
Restoring authorship annotation for <onpopov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/containers/comptrie/writeable_node.cpp')
-rw-r--r-- | library/cpp/containers/comptrie/writeable_node.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/containers/comptrie/writeable_node.cpp b/library/cpp/containers/comptrie/writeable_node.cpp index 749e4fc8b9..404003dbbd 100644 --- a/library/cpp/containers/comptrie/writeable_node.cpp +++ b/library/cpp/containers/comptrie/writeable_node.cpp @@ -1,6 +1,6 @@ -#include "writeable_node.h" -#include "node.h" -#include "comptrie_impl.h" +#include "writeable_node.h" +#include "node.h" +#include "comptrie_impl.h" namespace NCompactTrie { TWriteableNode::TWriteableNode() @@ -26,7 +26,7 @@ namespace NCompactTrie { , Label(node.GetLabel()) { } - + size_t TWriteableNode::Measure() const { size_t len = 2 + LeafLength; size_t fwdLen = 0; @@ -77,7 +77,7 @@ namespace NCompactTrie { size_t usedLen = 2; usedLen += PackOffset(buffer + usedLen, leftOffset); usedLen += PackOffset(buffer + usedLen, rightOffset); - + if (LeafPos && LeafLength) { memcpy(buffer + usedLen, LeafPos, LeafLength); usedLen += LeafLength; |