diff options
author | eeight <eeight@yandex-team.ru> | 2022-02-10 16:46:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:18 +0300 |
commit | 475c0a46f28166e83fd263badc7546377cddcabe (patch) | |
tree | 39c5a49b8aaad78fe390b6f1f2886bdbda40f3e7 /tools/archiver | |
parent | a6e0145a095c7bb3770d6e07aee301de5c73f96e (diff) | |
download | ydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz |
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'tools/archiver')
-rw-r--r-- | tools/archiver/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/archiver/main.cpp b/tools/archiver/main.cpp index 6cda54c1ea..d883638492 100644 --- a/tools/archiver/main.cpp +++ b/tools/archiver/main.cpp @@ -58,10 +58,10 @@ namespace { { } - ~THexOutput() override { + ~THexOutput() override { } - inline IOutputStream* Slave() const noexcept { + inline IOutputStream* Slave() const noexcept { return Slave_; } @@ -125,7 +125,7 @@ namespace { *Out_ << Base_ << ":\n"; } - ~TYasmOutput() override { + ~TYasmOutput() override { } void DoFinish() override { @@ -170,7 +170,7 @@ namespace { *Slave() << "static_assert(sizeof(unsigned int) == 4, \"ups, unsupported platform\");\n\nextern \"C\" {\nextern const unsigned char " << B << "[] = {\n"; } - ~TCOutput() override { + ~TCOutput() override { } void DoFinish() override { @@ -188,7 +188,7 @@ namespace { *O << "static_assert(sizeof(unsigned int) == 4, \"ups, unsupported platform\");\n\nextern \"C\" {\nextern const unsigned char " << B << "[] = \n"; } - ~TCStringOutput() override { + ~TCStringOutput() override { } void DoWrite(const void* data, size_t len) override { @@ -298,7 +298,7 @@ static inline TAutoPtr<IOutputStream> OpenOutput(const TString& url) { } } -static inline bool IsDelim(char ch) noexcept { +static inline bool IsDelim(char ch) noexcept { return ch == '/' || ch == '\\'; } |