Index: src/bridge/NSBridging.h ================================================================== --- src/bridge/NSBridging.h +++ src/bridge/NSBridging.h @@ -12,13 +12,17 @@ * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ -#import +#ifdef OF_BRIDGE_LOCAL_INCLUDES +# import "macros.h" +#else +# import +#endif -NS_ASSUME_NONNULL_BEGIN +OF_ASSUME_NONNULL_BEGIN /*! * @protocol NSBridging NSBridging.h ObjFW-Bridge/NSBridging.h * * @brief A protocol implemented by classes supporting bridging Foundation @@ -34,6 +38,6 @@ * @return The receiver as an ObjFW object */ - (id)OFObject; @end -NS_ASSUME_NONNULL_END +OF_ASSUME_NONNULL_END