Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81a8b20 commit f4206f9Copy full SHA for f4206f9
1 file changed
libunwind/src/Unwind-wasm.c
@@ -102,8 +102,7 @@ _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIP(struct _Unwind_Context *context) {
102
}
103
104
/// Not used in Wasm.
105
-_LIBUNWIND_EXPORT void _Unwind_SetIP(struct _Unwind_Context *context,
106
- uintptr_t value) {}
+_LIBUNWIND_EXPORT void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t) {}
107
108
/// Called by personality handler to get LSDA for current frame.
109
_LIBUNWIND_EXPORT uintptr_t
@@ -115,8 +114,7 @@ _Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) {
115
114
116
117
118
-_LIBUNWIND_EXPORT uintptr_t
119
-_Unwind_GetRegionStart(struct _Unwind_Context *context) {
+_LIBUNWIND_EXPORT uintptr_t _Unwind_GetRegionStart(struct _Unwind_Context *) {
120
return 0;
121
122
0 commit comments