diff options
author | sergey <sergey@yandex-team.ru> | 2022-02-10 16:47:29 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:29 +0300 |
commit | 05f59b2581f074c756adaee6b260014ac3a0c3ec (patch) | |
tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp/digest/old_crc/crc.cpp | |
parent | 5d8d1af4df7f9cd4acc021f069546c30677e7979 (diff) | |
download | ydb-05f59b2581f074c756adaee6b260014ac3a0c3ec.tar.gz |
Restoring authorship annotation for <sergey@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/digest/old_crc/crc.cpp')
-rw-r--r-- | library/cpp/digest/old_crc/crc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/digest/old_crc/crc.cpp b/library/cpp/digest/old_crc/crc.cpp index 986c00c5ec..994755f34d 100644 --- a/library/cpp/digest/old_crc/crc.cpp +++ b/library/cpp/digest/old_crc/crc.cpp @@ -1,10 +1,10 @@ #include "crc.h" - + #include <library/cpp/digest/old_crc/crc.inc> #include <util/system/defaults.h> -static const ui64 CRCTAB64[256] = { +static const ui64 CRCTAB64[256] = { ULL(0x0000000000000000), ULL(0xE543279765927881), ULL(0x2FC568B9AEB68983), @@ -261,8 +261,8 @@ static const ui64 CRCTAB64[256] = { ULL(0x8B8AF709E5AF8488), ULL(0x410CB8272E8B758A), ULL(0xA44F9FB04B190D0B), -}; - +}; + const ui32* crctab16 = CRCTAB16; const ui32* crctab32 = CRCTAB32; const ui64* crctab64 = CRCTAB64; |