File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ extern "C" {
14
14
#undef CXA_ALLOCATE_EXCEPTION_SPECIFIER
15
15
#define CXA_ALLOCATE_EXCEPTION_SPECIFIER
16
16
#endif
17
- __attribute__((weak ))
18
17
void * __cxa_allocate_exception (size_t thrown_size ) CXA_ALLOCATE_EXCEPTION_SPECIFIER ;
19
18
20
19
/**
@@ -23,7 +22,6 @@ void *__cxa_allocate_exception(size_t thrown_size) CXA_ALLOCATE_EXCEPTION_SPECIF
23
22
* _Unwind_Exception structure within this structure, and should be passed to
24
23
* the C++ personality function.
25
24
*/
26
- __attribute__((weak ))
27
25
struct _Unwind_Exception * objc_init_cxx_exception (id thrown_exception );
28
26
/**
29
27
* The GNU C++ exception personality function, provided by libsupc++ (GNU) or
@@ -34,21 +32,18 @@ __attribute__((weak)) DECLARE_PERSONALITY_FUNCTION(__gxx_personality_v0);
34
32
* Frees an exception object allocated by __cxa_allocate_exception(). Part of
35
33
* the Itanium C++ ABI.
36
34
*/
37
- __attribute__((weak ))
38
35
void __cxa_free_exception (void * thrown_exception );
39
36
/**
40
37
* Tests whether a C++ exception contains an Objective-C object, and returns if
41
38
* if it does. The second argument is a pointer to a boolean value indicating
42
39
* whether this is a valid object.
43
40
*/
44
- __attribute__((weak ))
45
41
void * objc_object_for_cxx_exception (void * thrown_exception , int * isValid );
46
42
47
43
/**
48
44
* Prints the type info associated with an exception. Used only when
49
45
* debugging, not compiled in the normal build.
50
46
*/
51
- __attribute__((weak ))
52
47
void print_type_info (void * thrown_exception );
53
48
54
49
/**
You can’t perform that action at this time.
0 commit comments