diff options
author | setser <setser@yandex-team.ru> | 2022-02-10 16:46:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:30 +0300 |
commit | a4aba79bef18ab7f150044a7e4f0f29c88a76513 (patch) | |
tree | ae46564c0dc4e1952ad8e8f2efc1aeab4e31b312 /contrib/libs/cxxsupp/libcxxrt/unwind.h | |
parent | 7597bb840e100a7acf04459a48562c75b439f467 (diff) | |
download | ydb-a4aba79bef18ab7f150044a7e4f0f29c88a76513.tar.gz |
Restoring authorship annotation for <setser@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxxrt/unwind.h')
-rw-r--r-- | contrib/libs/cxxsupp/libcxxrt/unwind.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/contrib/libs/cxxsupp/libcxxrt/unwind.h b/contrib/libs/cxxsupp/libcxxrt/unwind.h index cd163ddfdc..d1b774cc39 100644 --- a/contrib/libs/cxxsupp/libcxxrt/unwind.h +++ b/contrib/libs/cxxsupp/libcxxrt/unwind.h @@ -3,18 +3,18 @@ #include <contrib/libs/libunwind/include/unwind.h> #define DECLARE_PERSONALITY_FUNCTION(name) \ - _Unwind_Reason_Code name(int version,\ - _Unwind_Action actions,\ - uint64_t exceptionClass,\ - struct _Unwind_Exception *exceptionObject,\ - struct _Unwind_Context *context); + _Unwind_Reason_Code name(int version,\ + _Unwind_Action actions,\ + uint64_t exceptionClass,\ + struct _Unwind_Exception *exceptionObject,\ + struct _Unwind_Context *context); #define BEGIN_PERSONALITY_FUNCTION(name) \ - _Unwind_Reason_Code name(int version,\ - _Unwind_Action actions,\ - uint64_t exceptionClass,\ - struct _Unwind_Exception *exceptionObject,\ - struct _Unwind_Context *context)\ + _Unwind_Reason_Code name(int version,\ + _Unwind_Action actions,\ + uint64_t exceptionClass,\ + struct _Unwind_Exception *exceptionObject,\ + struct _Unwind_Context *context)\ { #define CALL_PERSONALITY_FUNCTION(name) name(version, actions, exceptionClass, exceptionObject, context) - + |