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 /contrib/restricted/boost/libs | |
parent | a6e0145a095c7bb3770d6e07aee301de5c73f96e (diff) | |
download | ydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz |
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted/boost/libs')
6 files changed, 23 insertions, 23 deletions
diff --git a/contrib/restricted/boost/libs/exception/src/clone_current_exception_non_intrusive.cpp b/contrib/restricted/boost/libs/exception/src/clone_current_exception_non_intrusive.cpp index 54b056d8d0..e99c91dea3 100644 --- a/contrib/restricted/boost/libs/exception/src/clone_current_exception_non_intrusive.cpp +++ b/contrib/restricted/boost/libs/exception/src/clone_current_exception_non_intrusive.cpp @@ -230,7 +230,7 @@ namespace { } - ~cloned_exception() + ~cloned_exception() { } diff --git a/contrib/restricted/boost/libs/filesystem/src/windows_file_codecvt.hpp b/contrib/restricted/boost/libs/filesystem/src/windows_file_codecvt.hpp index d4ad1b7daf..20f4ab55e2 100644 --- a/contrib/restricted/boost/libs/filesystem/src/windows_file_codecvt.hpp +++ b/contrib/restricted/boost/libs/filesystem/src/windows_file_codecvt.hpp @@ -30,11 +30,11 @@ : std::codecvt<wchar_t, char, std::mbstate_t>(refs) {} protected: - virtual bool do_always_noconv() const noexcept { return false; } + virtual bool do_always_noconv() const noexcept { return false; } // seems safest to assume variable number of characters since we don't // actually know what codepage is active - virtual int do_encoding() const noexcept { return 0; } + virtual int do_encoding() const noexcept { return 0; } virtual std::codecvt_base::result do_in(std::mbstate_t& state, const char* from, const char* from_end, const char*& from_next, @@ -50,7 +50,7 @@ virtual int do_length(std::mbstate_t&, const char* /*from*/, const char* /*from_end*/, std::size_t /*max*/) const { return 0; } - virtual int do_max_length() const noexcept { return 0; } + virtual int do_max_length() const noexcept { return 0; } }; #endif // BOOST_FILESYSTEM3_WIN_FILE_CODECVT_HPP diff --git a/contrib/restricted/boost/libs/log/src/exceptions.cpp b/contrib/restricted/boost/libs/log/src/exceptions.cpp index 693881b11a..30d13a16e7 100644 --- a/contrib/restricted/boost/libs/log/src/exceptions.cpp +++ b/contrib/restricted/boost/libs/log/src/exceptions.cpp @@ -53,11 +53,11 @@ bad_alloc::bad_alloc(std::string const& descr) : { } -bad_alloc::~bad_alloc() +bad_alloc::~bad_alloc() { } -const char* bad_alloc::what() const noexcept +const char* bad_alloc::what() const noexcept { return m_message.c_str(); } @@ -88,7 +88,7 @@ capacity_limit_reached::capacity_limit_reached(std::string const& descr) : { } -capacity_limit_reached::~capacity_limit_reached() +capacity_limit_reached::~capacity_limit_reached() { } @@ -113,7 +113,7 @@ runtime_error::runtime_error(std::string const& descr) : { } -runtime_error::~runtime_error() +runtime_error::~runtime_error() { } @@ -127,7 +127,7 @@ missing_value::missing_value(std::string const& descr) : { } -missing_value::~missing_value() +missing_value::~missing_value() { } @@ -183,7 +183,7 @@ invalid_type::invalid_type(std::string const& descr) : { } -invalid_type::~invalid_type() +invalid_type::~invalid_type() { } @@ -277,7 +277,7 @@ invalid_value::invalid_value(std::string const& descr) : { } -invalid_value::~invalid_value() +invalid_value::~invalid_value() { } @@ -315,7 +315,7 @@ parse_error::parse_error(std::string const& descr) : { } -parse_error::~parse_error() +parse_error::~parse_error() { } @@ -389,7 +389,7 @@ conversion_error::conversion_error(std::string const& descr) : { } -conversion_error::~conversion_error() +conversion_error::~conversion_error() { } @@ -422,7 +422,7 @@ system_error::system_error(boost::system::error_code code, std::string const& de { } -system_error::~system_error() +system_error::~system_error() { } @@ -463,7 +463,7 @@ logic_error::logic_error(std::string const& descr) : { } -logic_error::~logic_error() +logic_error::~logic_error() { } @@ -493,7 +493,7 @@ odr_violation::odr_violation(std::string const& descr) : { } -odr_violation::~odr_violation() +odr_violation::~odr_violation() { } @@ -531,7 +531,7 @@ unexpected_call::unexpected_call(std::string const& descr) : { } -unexpected_call::~unexpected_call() +unexpected_call::~unexpected_call() { } @@ -569,7 +569,7 @@ setup_error::setup_error(std::string const& descr) : { } -setup_error::~setup_error() +setup_error::~setup_error() { } @@ -607,7 +607,7 @@ limitation_error::limitation_error(std::string const& descr) : { } -limitation_error::~limitation_error() +limitation_error::~limitation_error() { } diff --git a/contrib/restricted/boost/libs/program_options/src/value_semantic.cpp b/contrib/restricted/boost/libs/program_options/src/value_semantic.cpp index 6055f62713..e5fdf10464 100644 --- a/contrib/restricted/boost/libs/program_options/src/value_semantic.cpp +++ b/contrib/restricted/boost/libs/program_options/src/value_semantic.cpp @@ -258,7 +258,7 @@ namespace boost { namespace program_options { } - const char* error_with_option_name::what() const noexcept + const char* error_with_option_name::what() const noexcept { // will substitute tokens each time what is run() substitute_placeholders(m_error_template); diff --git a/contrib/restricted/boost/libs/python/src/object/class.cpp b/contrib/restricted/boost/libs/python/src/object/class.cpp index 8d0daf63d7..652f2ed868 100644 --- a/contrib/restricted/boost/libs/python/src/object/class.cpp +++ b/contrib/restricted/boost/libs/python/src/object/class.cpp @@ -301,7 +301,7 @@ static PyTypeObject class_metatype_object = { // Install the instance data for a C++ object into a Python instance // object. -void instance_holder::install(PyObject* self) noexcept +void instance_holder::install(PyObject* self) noexcept { assert(PyType_IsSubtype(Py_TYPE(Py_TYPE(self)), &class_metatype_object)); m_next = ((objects::instance<>*)self)->objects; @@ -751,7 +751,7 @@ void* instance_holder::allocate(PyObject* self_, std::size_t holder_offset, std: } } -void instance_holder::deallocate(PyObject* self_, void* storage) noexcept +void instance_holder::deallocate(PyObject* self_, void* storage) noexcept { assert(PyType_IsSubtype(Py_TYPE(Py_TYPE(self_)), &class_metatype_object)); objects::instance<>* self = (objects::instance<>*)self_; diff --git a/contrib/restricted/boost/libs/regex/src/regex.cpp b/contrib/restricted/boost/libs/regex/src/regex.cpp index 441f42541f..a18846acdb 100644 --- a/contrib/restricted/boost/libs/regex/src/regex.cpp +++ b/contrib/restricted/boost/libs/regex/src/regex.cpp @@ -70,7 +70,7 @@ regex_error::regex_error(regex_constants::error_type err) { } -regex_error::~regex_error() +regex_error::~regex_error() { } |