mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-26 21:40:44 +00:00
Merge pull request #10 from gunyarakun/fix-invalid-return
fix invalid return statement
This commit is contained in:
commit
9cda7d7194
@ -12,7 +12,7 @@ objc_exception_frame *NSThreadCurrentHandler(void) {
|
||||
}
|
||||
|
||||
void NSThreadSetCurrentHandler(objc_exception_frame *handler) {
|
||||
return objc_tlsCurrent()->exception_frame = handler;
|
||||
objc_tlsCurrent()->exception_frame = handler;
|
||||
}
|
||||
|
||||
NSUncaughtExceptionHandler *NSThreadUncaughtExceptionHandler(void) {
|
||||
|
Loading…
Reference in New Issue
Block a user