diff options
author | setser <setser@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:31 +0300 |
commit | 3b2241461d41d41ba1a706b0750c4f0f55c344f6 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/cxxsupp/libcxxrt/unwind.h | |
parent | a4aba79bef18ab7f150044a7e4f0f29c88a76513 (diff) | |
download | ydb-3b2241461d41d41ba1a706b0750c4f0f55c344f6.tar.gz |
Restoring authorship annotation for <setser@yandex-team.ru>. Commit 2 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 d1b774cc39..cd163ddfdc 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) - + |