aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/containers/comptrie/node.cpp
diff options
context:
space:
mode:
authoronpopov <onpopov@yandex-team.ru>2022-02-10 16:50:38 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:38 +0300
commit84a29dd4980d5b39615e453f289bd1a81213296d (patch)
tree5e320f10d6b5863e0d5ab1a8caa9eefbdaa5195f /library/cpp/containers/comptrie/node.cpp
parent1717072c6635948128dad7b015a0ec05acbe913b (diff)
downloadydb-84a29dd4980d5b39615e453f289bd1a81213296d.tar.gz
Restoring authorship annotation for <onpopov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/containers/comptrie/node.cpp')
-rw-r--r--library/cpp/containers/comptrie/node.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/containers/comptrie/node.cpp b/library/cpp/containers/comptrie/node.cpp
index 5fd22f15ec..c3e8e807ce 100644
--- a/library/cpp/containers/comptrie/node.cpp
+++ b/library/cpp/containers/comptrie/node.cpp
@@ -1,9 +1,9 @@
-#include "node.h"
-#include "leaf_skipper.h"
+#include "node.h"
+#include "leaf_skipper.h"
#include "comptrie_impl.h"
-#include <util/system/yassert.h>
-#include <util/generic/yexception.h>
+#include <util/system/yassert.h>
+#include <util/generic/yexception.h>
namespace NCompactTrie {
TNode::TNode()
@@ -15,7 +15,7 @@ namespace NCompactTrie {
for (auto& offset : Offsets) {
offset = 0;
}
- }
+ }
// We believe that epsilon links are found only on the forward-position and that afer jumping an epsilon link you come to an ordinary node.