diff options
author | Nikita Slyusarev <nslus@yandex-team.com> | 2022-02-10 16:46:53 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:53 +0300 |
commit | 469afdc4e2587bf62ecdd096b75a0baa444c4012 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/digest/old_crc | |
parent | cd77cecfc03a3eaf87816af28a33067c4f0cdb59 (diff) | |
download | ydb-469afdc4e2587bf62ecdd096b75a0baa444c4012.tar.gz |
Restoring authorship annotation for Nikita Slyusarev <nslus@yandex-team.com>. Commit 2 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 3d3f17142a..994755f34d 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 7bc044fb34..a783bbae5b 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 737390600a..aa6ea8f6c5 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() |