diff options
author | danlark <danlark@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
commit | 3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (patch) | |
tree | 26154e1e9990f1bb4525d3e3fb5b6dac2c2c1da2 /contrib/restricted | |
parent | cb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (diff) | |
download | ydb-3426a9bc7f169ae9da54cef557ad2a33f6e8eee0.tar.gz |
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted')
3 files changed, 12 insertions, 12 deletions
diff --git a/contrib/restricted/boost/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp b/contrib/restricted/boost/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp index 25dfe54c98..73dbc010cf 100644 --- a/contrib/restricted/boost/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +++ b/contrib/restricted/boost/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp @@ -34,7 +34,7 @@ namespace detail inline void atomic_increment( register long * pw ) { - int a; + int a; asm { @@ -49,7 +49,7 @@ loop: inline long atomic_decrement( register long * pw ) { - int a; + int a; asm { @@ -70,7 +70,7 @@ loop: inline long atomic_conditional_increment( register long * pw ) { - int a; + int a; asm { diff --git a/contrib/restricted/boost/boost/thread/lockable_traits.hpp b/contrib/restricted/boost/boost/thread/lockable_traits.hpp index 2dd91639ea..e645c4af3f 100644 --- a/contrib/restricted/boost/boost/thread/lockable_traits.hpp +++ b/contrib/restricted/boost/boost/thread/lockable_traits.hpp @@ -112,10 +112,10 @@ namespace boost template<typename U,typename V> static true_type has_member(V (U::*)()); -#if __cpp_noexcept_function_type - template<typename U,typename V> - static true_type has_member(V (U::*)() noexcept); -#endif +#if __cpp_noexcept_function_type + template<typename U,typename V> + static true_type has_member(V (U::*)() noexcept); +#endif template<typename U> static false_type has_member(U); @@ -140,11 +140,11 @@ namespace boost template<typename U> static true_type has_member(bool (U::*)()); -#if __cpp_noexcept_function_type - template<typename U> - static true_type has_member(bool (U::*)() noexcept); -#endif +#if __cpp_noexcept_function_type template<typename U> + static true_type has_member(bool (U::*)() noexcept); +#endif + template<typename U> static false_type has_member(U); BOOST_STATIC_CONSTANT( diff --git a/contrib/restricted/libffi/src/x86/ffi.c b/contrib/restricted/libffi/src/x86/ffi.c index 9a592185a1..0e02c319cf 100644 --- a/contrib/restricted/libffi/src/x86/ffi.c +++ b/contrib/restricted/libffi/src/x86/ffi.c @@ -426,7 +426,7 @@ ffi_closure_inner (struct closure_frame *frame, char *stack) int cabi, i, n, flags, dir, narg_reg; const struct abi_params *pabi; ffi_type **arg_types; - char *argp; + char *argp; void *rvalue; void **avalue; |