Index: src/OFHTTPClient.h ================================================================== --- src/OFHTTPClient.h +++ src/OFHTTPClient.h @@ -113,11 +113,11 @@ } /*! * The delegate of the HTTP request. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * Whether redirects from HTTPS to HTTP will be allowed. */ Index: src/OFHTTPServer.h ================================================================== --- src/OFHTTPServer.h +++ src/OFHTTPServer.h @@ -106,11 +106,11 @@ @property (nonatomic) uint16_t port; /*! * The delegate for the HTTP server. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * The server name the server presents to clients. * Index: src/OFKernelEventObserver.h ================================================================== --- src/OFKernelEventObserver.h +++ src/OFKernelEventObserver.h @@ -126,11 +126,11 @@ } /*! * The delegate for the OFKernelEventObserver. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * @brief Creates a new OFKernelEventObserver. * Index: src/OFTLSSocket.h ================================================================== --- src/OFTLSSocket.h +++ src/OFTLSSocket.h @@ -55,11 +55,11 @@ */ @protocol OFTLSSocket /*! * The delegate for the TLS socket. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * The path to the X.509 certificate file to use. */ @@ -74,11 +74,11 @@ * The passphrase to decrypt the PKCS#8 private key file. * * @warning You have to ensure that this is in secure memory protected from * swapping! This is also the reason why this is not an OFString. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) const char *privateKeyPassphrase; /** * Whether certificate verification is enabled. * Index: src/OFXMLElementBuilder.h ================================================================== --- src/OFXMLElementBuilder.h +++ src/OFXMLElementBuilder.h @@ -110,11 +110,11 @@ } /*! * The delegate for the OFXMLElementBuilder. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * @brief Creates a new element builder. * Index: src/OFXMLParser.h ================================================================== --- src/OFXMLParser.h +++ src/OFXMLParser.h @@ -174,11 +174,11 @@ } /*! * The delegate that is used by the XML parser. */ -@property OF_NULLABLE_PROPERTY (nonatomic, assign) +@property OF_NULLABLE_PROPERTY (assign, nonatomic) id delegate; /*! * The depth limit for the XML parser. *