mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Merge pull request #135 from gnustep/fix-base-native-exceptions
Fix BASE_NATIVE_OBJC_EXCEPTIONS check with OBJC_ZEROCOST_EXCEPTIONS.
This commit is contained in:
commit
4dd9fa30ab
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2020-05-14 Frederik Seiffert <frederik@algoriddim.com>
|
||||
|
||||
* Headers/Foundation/NSException.h:
|
||||
Fix BASE_NATIVE_OBJC_EXCEPTIONS check with OBJC_ZEROCOST_EXCEPTIONS.
|
||||
|
||||
2020-05-13 Frederik Seiffert <frederik@algoriddim.com>
|
||||
|
||||
* Source/win32/GSFileHandle.m:
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
#if defined(_NATIVE_OBJC_EXCEPTIONS)
|
||||
# define USER_NATIVE_OBJC_EXCEPTIONS 1
|
||||
#elif defined(BASE_NATIVE_OBJC_EXCEPTIONS) && defined(OBJC_ZEROCOST_EXCEPTIONS)
|
||||
#elif BASE_NATIVE_OBJC_EXCEPTIONS && defined(OBJC_ZEROCOST_EXCEPTIONS)
|
||||
# define USER_NATIVE_OBJC_EXCEPTIONS 1
|
||||
# define _NATIVE_OBJC_EXCEPTIONS 1
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue