diff options
author | Vlad Yaroslavlev <vladon@vladon.com> | 2022-02-10 16:46:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:25 +0300 |
commit | 344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/yson_pull/ut/cescape_ut.cpp | |
parent | 706b83ed7de5a473436620367af31fc0ceecde07 (diff) | |
download | ydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz |
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson_pull/ut/cescape_ut.cpp')
-rw-r--r-- | library/cpp/yson_pull/ut/cescape_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yson_pull/ut/cescape_ut.cpp b/library/cpp/yson_pull/ut/cescape_ut.cpp index d0f65be3fe..6628ba1d15 100644 --- a/library/cpp/yson_pull/ut/cescape_ut.cpp +++ b/library/cpp/yson_pull/ut/cescape_ut.cpp @@ -5,7 +5,7 @@ using namespace NYsonPull::NDetail; namespace { - void test_roundtrip(const TVector<ui8>& str) { + void test_roundtrip(const TVector<ui8>& str) { TStringBuf str_buf( reinterpret_cast<const char*>(str.data()), str.size()); @@ -19,7 +19,7 @@ namespace { } template <size_t N> - void test_exhaustive(TVector<ui8>& str) { + void test_exhaustive(TVector<ui8>& str) { for (int i = 0; i < 256; ++i) { str[str.size() - N] = static_cast<char>(i); test_exhaustive<N - 1>(str); @@ -27,13 +27,13 @@ namespace { } template <> - void test_exhaustive<0>(TVector<ui8>& str) { + void test_exhaustive<0>(TVector<ui8>& str) { test_roundtrip(str); } template <size_t N> void test_exhaustive() { - TVector<ui8> str(N, ' '); + TVector<ui8> str(N, ' '); test_exhaustive<N>(str); } |