aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/packedtypes
diff options
context:
space:
mode:
authorlsurn <lsurn@yandex-team.ru>2022-02-10 16:49:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:33 +0300
commitd8825989a7621fc7275e8cfdba16b4f699fb6359 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/packedtypes
parent45e70bb2432018a4704845621cd9ddd2ceab6ffb (diff)
downloadydb-d8825989a7621fc7275e8cfdba16b4f699fb6359.tar.gz
Restoring authorship annotation for <lsurn@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/packedtypes')
-rw-r--r--library/cpp/packedtypes/longs_ut.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/packedtypes/longs_ut.cpp b/library/cpp/packedtypes/longs_ut.cpp
index e7f0263d93..8b06c934d2 100644
--- a/library/cpp/packedtypes/longs_ut.cpp
+++ b/library/cpp/packedtypes/longs_ut.cpp
@@ -1,19 +1,19 @@
#include "longs.h"
#include <library/cpp/testing/unittest/registar.h>
-
+
#include <library/cpp/digest/old_crc/crc.h>
#include <util/string/util.h>
#include <util/stream/output.h>
#include <util/system/hi_lo.h>
-
+
Y_UNIT_TEST_SUITE(TLongsTest) {
Y_UNIT_TEST(TestLongs) {
i16 x16 = 40;
i64 x64 = 40;
i64 y64;
TString s;
-
+
s += Sprintf("x16=0x%x\n", (int)x16);
s += Sprintf("LO_8(x16)=0x%x HI_8(x16)=0x%x\n\n", (int)Lo8(x16), (int)Hi8(x16));