diff options
author | loudhorr <loudhorr@yandex-team.ru> | 2022-02-10 16:46:26 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:26 +0300 |
commit | cda908cacb24be13e419866da89ff4fbeea31f89 (patch) | |
tree | cc0bc607920fb1192332619d57eb874402a23bff /contrib | |
parent | 48030071922c430b2b2ffbf612d75c7afbf7a2c0 (diff) | |
download | ydb-cda908cacb24be13e419866da89ff4fbeea31f89.tar.gz |
Restoring authorship annotation for <loudhorr@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib')
4 files changed, 11 insertions, 11 deletions
diff --git a/contrib/libs/poco/Foundation/src/FileChannel.cpp b/contrib/libs/poco/Foundation/src/FileChannel.cpp index c2b2f6ee88..2148154a8d 100644 --- a/contrib/libs/poco/Foundation/src/FileChannel.cpp +++ b/contrib/libs/poco/Foundation/src/FileChannel.cpp @@ -126,7 +126,7 @@ void FileChannel::log(const Message& msg) { _pFile->write(msg.getText(), _flush); } - catch (const WriteFileException &) + catch (const WriteFileException &) { // In case of no space left on device, // we try to purge old files or truncate current file. @@ -139,10 +139,10 @@ void FileChannel::log(const Message& msg) { PurgeOneFileStrategy().purge(_path); } - - delete _pFile; - _pFile = 0; - _pFile = new LogFile(_path); + + delete _pFile; + _pFile = 0; + _pFile = new LogFile(_path); } } diff --git a/contrib/libs/poco/Net/ya.make b/contrib/libs/poco/Net/ya.make index 9feadc7027..4bdace0995 100644 --- a/contrib/libs/poco/Net/ya.make +++ b/contrib/libs/poco/Net/ya.make @@ -33,7 +33,7 @@ CFLAGS( -DPOCO_SOCKETADDRESS_DONT_PREFER_IPV4 ) -IF (OS_LINUX) +IF (OS_LINUX) CFLAGS( -DPOCO_HAVE_FD_EPOLL ) diff --git a/contrib/restricted/boost/boost/test/impl/compiler_log_formatter.ipp b/contrib/restricted/boost/boost/test/impl/compiler_log_formatter.ipp index aa0a0e229f..ebc8ec2b99 100644 --- a/contrib/restricted/boost/boost/test/impl/compiler_log_formatter.ipp +++ b/contrib/restricted/boost/boost/test/impl/compiler_log_formatter.ipp @@ -282,7 +282,7 @@ compiler_log_formatter::entry_context_finish( std::ostream& output, log_level l //____________________________________________________________________________// void -compiler_log_formatter::log_entry_context( std::ostream& output, log_level /*l*/, const_string context_descr ) +compiler_log_formatter::log_entry_context( std::ostream& output, log_level /*l*/, const_string context_descr ) { output << "\n " << context_descr; } diff --git a/contrib/restricted/boost/boost/test/impl/junit_log_formatter.ipp b/contrib/restricted/boost/boost/test/impl/junit_log_formatter.ipp index 0f7a8f4c51..13d2a7ec39 100644 --- a/contrib/restricted/boost/boost/test/impl/junit_log_formatter.ipp +++ b/contrib/restricted/boost/boost/test/impl/junit_log_formatter.ipp @@ -528,8 +528,8 @@ junit_log_formatter::test_unit_start( std::ostream& /*ostr*/, test_unit const& t void junit_log_formatter::test_unit_finish( std::ostream& /*ostr*/, test_unit const& tu, unsigned long /*elapsed*/ ) { - (void) tu; // unused when asserts are turned off - + (void) tu; // unused when asserts are turned off + // the time is already stored in the result_reporter assert( tu.p_id == list_path_to_root.back() ); list_path_to_root.pop_back(); @@ -538,8 +538,8 @@ junit_log_formatter::test_unit_finish( std::ostream& /*ostr*/, test_unit const& void junit_log_formatter::test_unit_aborted( std::ostream& /*ostr*/, test_unit const& tu ) { - (void) tu; // unused when asserts are turned off - + (void) tu; // unused when asserts are turned off + assert( tu.p_id == list_path_to_root.back() ); //list_path_to_root.pop_back(); } |