diff options
author | gleb-kov <gleb-kov@yandex-team.ru> | 2022-02-10 16:46:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:22 +0300 |
commit | 7b1cfa32681104c8468c5824c79fd80d9a88a579 (patch) | |
tree | 499e0a6e0f35aba718ac262605efb4342996bdca /contrib | |
parent | 89973d10cfeccd97d2f25449a523c93940565edf (diff) | |
download | ydb-7b1cfa32681104c8468c5824c79fd80d9a88a579.tar.gz |
Restoring authorship annotation for <gleb-kov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib')
3 files changed, 8 insertions, 8 deletions
diff --git a/contrib/restricted/boost/boost/iterator/counting_iterator.hpp b/contrib/restricted/boost/boost/iterator/counting_iterator.hpp index 80108f1506..f994bab732 100644 --- a/contrib/restricted/boost/boost/iterator/counting_iterator.hpp +++ b/contrib/restricted/boost/boost/iterator/counting_iterator.hpp @@ -170,8 +170,8 @@ class counting_iterator { } - counting_iterator& operator=(counting_iterator const&) = default; - + counting_iterator& operator=(counting_iterator const&) = default; + # if 0 template<class OtherIncrementable> counting_iterator( diff --git a/contrib/restricted/boost/boost/multiprecision/detail/number_base.hpp b/contrib/restricted/boost/boost/multiprecision/detail/number_base.hpp index 24e0299b15..75e687dbdf 100644 --- a/contrib/restricted/boost/boost/multiprecision/detail/number_base.hpp +++ b/contrib/restricted/boost/boost/multiprecision/detail/number_base.hpp @@ -408,7 +408,7 @@ struct expression<tag, Arg1, void, void, void> typedef tag tag_type; explicit expression(const Arg1& a) : arg(a) {} - expression(const expression& e) : arg(e.arg) {} + expression(const expression& e) : arg(e.arg) {} left_type left()const { return left_type(arg); } @@ -480,7 +480,7 @@ struct expression<terminal, Arg1, void, void, void> typedef terminal tag_type; explicit expression(const Arg1& a) : arg(a) {} - expression(const expression& e) : arg(e.arg) {} + expression(const expression& e) : arg(e.arg) {} const Arg1& value()const BOOST_NOEXCEPT { return arg; } @@ -554,7 +554,7 @@ struct expression<tag, Arg1, Arg2, void, void> typedef tag tag_type; expression(const Arg1& a1, const Arg2& a2) : arg1(a1), arg2(a2) {} - expression(const expression& e) : arg1(e.arg1), arg2(e.arg2) {} + expression(const expression& e) : arg1(e.arg1), arg2(e.arg2) {} left_type left()const { return left_type(arg1); } right_type right()const { return right_type(arg2); } @@ -638,7 +638,7 @@ struct expression<tag, Arg1, Arg2, Arg3, void> typedef tag tag_type; expression(const Arg1& a1, const Arg2& a2, const Arg3& a3) : arg1(a1), arg2(a2), arg3(a3) {} - expression(const expression& e) : arg1(e.arg1), arg2(e.arg2), arg3(e.arg3) {} + expression(const expression& e) : arg1(e.arg1), arg2(e.arg2), arg3(e.arg3) {} left_type left()const { return left_type(arg1); } middle_type middle()const { return middle_type(arg2); } @@ -731,7 +731,7 @@ struct expression typedef tag tag_type; expression(const Arg1& a1, const Arg2& a2, const Arg3& a3, const Arg4& a4) : arg1(a1), arg2(a2), arg3(a3), arg4(a4) {} - expression(const expression& e) : arg1(e.arg1), arg2(e.arg2), arg3(e.arg3), arg4(e.arg4) {} + expression(const expression& e) : arg1(e.arg1), arg2(e.arg2), arg3(e.arg3), arg4(e.arg4) {} left_type left()const { return left_type(arg1); } left_middle_type left_middle()const { return left_middle_type(arg2); } diff --git a/contrib/restricted/boost/boost/process/detail/posix/sigchld_service.hpp b/contrib/restricted/boost/boost/process/detail/posix/sigchld_service.hpp index 437be438be..0112fa5427 100644 --- a/contrib/restricted/boost/boost/process/detail/posix/sigchld_service.hpp +++ b/contrib/restricted/boost/boost/process/detail/posix/sigchld_service.hpp @@ -104,7 +104,7 @@ void sigchld_service::_handle_signal(const boost::system::error_code & ec) _signal_set.async_wait( [this](const boost::system::error_code & ec, int) { - _strand.post([]{}); + _strand.post([]{}); this->_handle_signal(ec); }); } |