diff options
author | Nikita Slyusarev <nslus@yandex-team.com> | 2022-02-10 16:46:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:52 +0300 |
commit | cd77cecfc03a3eaf87816af28a33067c4f0cdb59 (patch) | |
tree | 1308e0bae862d52e0020d881fe758080437fe389 /library/cpp/digest/old_crc | |
parent | cdae02d225fb5b3afbb28990e79a7ac6c9125327 (diff) | |
download | ydb-cd77cecfc03a3eaf87816af28a33067c4f0cdb59.tar.gz |
Restoring authorship annotation for Nikita Slyusarev <nslus@yandex-team.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/digest/old_crc')
-rw-r--r-- | library/cpp/digest/old_crc/crc.cpp | 2 | ||||
-rw-r--r-- | library/cpp/digest/old_crc/ut/ya.make | 8 | ||||
-rw-r--r-- | library/cpp/digest/old_crc/ya.make | 14 |
3 files changed, 12 insertions, 12 deletions
diff --git a/library/cpp/digest/old_crc/crc.cpp b/library/cpp/digest/old_crc/crc.cpp index 994755f34d..3d3f17142a 100644 --- a/library/cpp/digest/old_crc/crc.cpp +++ b/library/cpp/digest/old_crc/crc.cpp @@ -1,7 +1,7 @@ #include "crc.h" #include <library/cpp/digest/old_crc/crc.inc> - + #include <util/system/defaults.h> static const ui64 CRCTAB64[256] = { diff --git a/library/cpp/digest/old_crc/ut/ya.make b/library/cpp/digest/old_crc/ut/ya.make index a783bbae5b..7bc044fb34 100644 --- a/library/cpp/digest/old_crc/ut/ya.make +++ b/library/cpp/digest/old_crc/ut/ya.make @@ -1,9 +1,9 @@ UNITTEST_FOR(library/cpp/digest/old_crc) -OWNER( - pg - g:util -) +OWNER( + pg + g:util +) SRCS( crc_ut.cpp diff --git a/library/cpp/digest/old_crc/ya.make b/library/cpp/digest/old_crc/ya.make index aa6ea8f6c5..737390600a 100644 --- a/library/cpp/digest/old_crc/ya.make +++ b/library/cpp/digest/old_crc/ya.make @@ -1,17 +1,17 @@ LIBRARY() -OWNER( - pg - g:util -) +OWNER( + pg + g:util +) SRCS( crc.cpp ) -RUN_PROGRAM( +RUN_PROGRAM( library/cpp/digest/old_crc/gencrc - STDOUT crc.inc -) + STDOUT crc.inc +) END() |