diff options
author | eeight <[email protected]> | 2022-02-10 16:46:19 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:19 +0300 |
commit | bd085aee9b4f7a0bee302ce687964ffb7098f986 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /tools/archiver/main.cpp | |
parent | 475c0a46f28166e83fd263badc7546377cddcabe (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'tools/archiver/main.cpp')
-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 d883638492b..6cda54c1ea8 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 == '\\'; } |