diff options
| author | tobo <[email protected]> | 2022-02-10 16:47:27 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:27 +0300 | 
| commit | 55a7f90e4cd31e9481cace8ee5dfd682c27e810e (patch) | |
| tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp/blockcodecs/codecs | |
| parent | 7fe839092527589b38f014d854c51565b3c1adfa (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/blockcodecs/codecs')
| -rw-r--r-- | library/cpp/blockcodecs/codecs/brotli/brotli.cpp | 4 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/bzip/bzip.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/fastlz/fastlz.cpp | 4 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/legacy_zstd06/legacy_zstd06.cpp | 6 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/lz4/lz4.cpp | 6 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/lzma/lzma.cpp | 4 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/snappy/snappy.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/zlib/zlib.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/blockcodecs/codecs/zstd/zstd.cpp | 6 | 
9 files changed, 18 insertions, 18 deletions
| diff --git a/library/cpp/blockcodecs/codecs/brotli/brotli.cpp b/library/cpp/blockcodecs/codecs/brotli/brotli.cpp index 4893fb7a006..6e3cd971bdc 100644 --- a/library/cpp/blockcodecs/codecs/brotli/brotli.cpp +++ b/library/cpp/blockcodecs/codecs/brotli/brotli.cpp @@ -13,7 +13,7 @@ namespace {          inline TBrotliCodec(ui32 level)              : Quality(level) -            , MyName(TStringBuf("brotli_") + ToString(level))  +            , MyName(TStringBuf("brotli_") + ToString(level))          {          } @@ -63,5 +63,5 @@ namespace {              }          }      }; -    const TBrotliRegistrar Registrar{};  +    const TBrotliRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/bzip/bzip.cpp b/library/cpp/blockcodecs/codecs/bzip/bzip.cpp index 3ca1f80daf4..3a5cfdd0e9a 100644 --- a/library/cpp/blockcodecs/codecs/bzip/bzip.cpp +++ b/library/cpp/blockcodecs/codecs/bzip/bzip.cpp @@ -58,5 +58,5 @@ namespace {              RegisterAlias("bzip2", "bzip2-6");          }      }; -    const TBZipRegistrar Registrar{};  +    const TBZipRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/fastlz/fastlz.cpp b/library/cpp/blockcodecs/codecs/fastlz/fastlz.cpp index 9d836b87fb2..da2831fbd24 100644 --- a/library/cpp/blockcodecs/codecs/fastlz/fastlz.cpp +++ b/library/cpp/blockcodecs/codecs/fastlz/fastlz.cpp @@ -34,7 +34,7 @@ namespace {              const int ret = fastlz_decompress(in.data(), in.size(), out, len);              if (ret < 0 || (size_t)ret != len) { -                ythrow TDataError() << TStringBuf("can not decompress");  +                ythrow TDataError() << TStringBuf("can not decompress");              }          } @@ -50,5 +50,5 @@ namespace {              RegisterAlias("fastlz", "fastlz-0");          }      }; -    const TFastLZRegistrar Registrar{};  +    const TFastLZRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/legacy_zstd06/legacy_zstd06.cpp b/library/cpp/blockcodecs/codecs/legacy_zstd06/legacy_zstd06.cpp index 0e80f47cc61..042f031679c 100644 --- a/library/cpp/blockcodecs/codecs/legacy_zstd06/legacy_zstd06.cpp +++ b/library/cpp/blockcodecs/codecs/legacy_zstd06/legacy_zstd06.cpp @@ -11,13 +11,13 @@ namespace {      struct TZStd06Codec: public TAddLengthCodec<TZStd06Codec> {          inline TZStd06Codec(unsigned level)              : Level(level) -            , MyName(TStringBuf("zstd06_") + ToString(Level))  +            , MyName(TStringBuf("zstd06_") + ToString(Level))          {          }          static inline size_t CheckError(size_t ret, const char* what) {              if (ZSTD_isError(ret)) { -                ythrow yexception() << what << TStringBuf(" zstd error: ") << ZSTD_getErrorName(ret);  +                ythrow yexception() << what << TStringBuf(" zstd error: ") << ZSTD_getErrorName(ret);              }              return ret; @@ -54,5 +54,5 @@ namespace {              }          }      }; -    const TZStd06Registrar Registrar{};  +    const TZStd06Registrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/lz4/lz4.cpp b/library/cpp/blockcodecs/codecs/lz4/lz4.cpp index db8d9f40198..fbf0fe110f1 100644 --- a/library/cpp/blockcodecs/codecs/lz4/lz4.cpp +++ b/library/cpp/blockcodecs/codecs/lz4/lz4.cpp @@ -53,7 +53,7 @@ namespace {          }          static inline TStringBuf DPrefix() { -            return TStringBuf("fast");  +            return TStringBuf("fast");          }      }; @@ -66,7 +66,7 @@ namespace {          }          static inline TStringBuf DPrefix() { -            return TStringBuf("safe");  +            return TStringBuf("safe");          }      }; @@ -119,5 +119,5 @@ namespace {              RegisterAlias("lz4hc", "lz4-hc-safe");          }      }; -    const TLz4Registrar Registrar{};  +    const TLz4Registrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/lzma/lzma.cpp b/library/cpp/blockcodecs/codecs/lzma/lzma.cpp index c2c3784540a..6c8d5fded42 100644 --- a/library/cpp/blockcodecs/codecs/lzma/lzma.cpp +++ b/library/cpp/blockcodecs/codecs/lzma/lzma.cpp @@ -39,7 +39,7 @@ namespace {          inline void DoDecompress(const TData& in, void* out, size_t len) const {              if (in.size() <= LZMA_PROPS_SIZE) { -                ythrow TDataError() << TStringBuf("broken lzma stream");  +                ythrow TDataError() << TStringBuf("broken lzma stream");              }              const unsigned char* props = (const unsigned char*)in.data(); @@ -70,5 +70,5 @@ namespace {              RegisterAlias("lzma", "lzma-5");          }      }; -    const TLzmaRegistrar Registrar{};  +    const TLzmaRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/snappy/snappy.cpp b/library/cpp/blockcodecs/codecs/snappy/snappy.cpp index 18e499eea17..f6be05a05fc 100644 --- a/library/cpp/blockcodecs/codecs/snappy/snappy.cpp +++ b/library/cpp/blockcodecs/codecs/snappy/snappy.cpp @@ -48,5 +48,5 @@ namespace {              RegisterCodec(MakeHolder<TSnappyCodec>());          }      }; -    const TSnappyRegistrar Registrar{};  +    const TSnappyRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/zlib/zlib.cpp b/library/cpp/blockcodecs/codecs/zlib/zlib.cpp index 8e23269f6d2..cdb556c36d4 100644 --- a/library/cpp/blockcodecs/codecs/zlib/zlib.cpp +++ b/library/cpp/blockcodecs/codecs/zlib/zlib.cpp @@ -60,5 +60,5 @@ namespace {              RegisterAlias("zlib", "zlib-6");          }      }; -    const TZLibRegistrar Registrar{};  +    const TZLibRegistrar Registrar{};  } diff --git a/library/cpp/blockcodecs/codecs/zstd/zstd.cpp b/library/cpp/blockcodecs/codecs/zstd/zstd.cpp index 7ea1c6371bb..95299b3f6d3 100644 --- a/library/cpp/blockcodecs/codecs/zstd/zstd.cpp +++ b/library/cpp/blockcodecs/codecs/zstd/zstd.cpp @@ -11,13 +11,13 @@ namespace {      struct TZStd08Codec: public TAddLengthCodec<TZStd08Codec> {          inline TZStd08Codec(unsigned level)              : Level(level) -            , MyName(TStringBuf("zstd08_") + ToString(Level))  +            , MyName(TStringBuf("zstd08_") + ToString(Level))          {          }          static inline size_t CheckError(size_t ret, const char* what) {              if (ZSTD_isError(ret)) { -                ythrow yexception() << what << TStringBuf(" zstd error: ") << ZSTD_getErrorName(ret);  +                ythrow yexception() << what << TStringBuf(" zstd error: ") << ZSTD_getErrorName(ret);              }              return ret; @@ -55,5 +55,5 @@ namespace {              }          }      }; -    const TZStd08Registrar Registrar{};  +    const TZStd08Registrar Registrar{};  } | 
