Differences From Artifact [e39f7af9d0]:
- File src/OFHTTPRequest.h — part of check-in [d35b4e3a85] at 2020-04-12 12:52:47 on branch trunk — Work around broken -Wdocumentation in Clang 10 (user: js, size: 4180) [annotate] [blame] [check-ins using] [more...]
To Artifact [381b8b1e37]:
- File
src/OFHTTPRequest.h
— part of check-in
[ef614a225d]
at
2020-09-26 21:58:39
on branch trunk
— Don't require __COUNTER__ for OF_RESERVE_IVARS
__COUNTER__ does not exist in GCC 4.2, and Apple GCC 4.2 is still the
newest compiler available for macOS 10.5. (user: js, size: 4195) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
74 75 76 77 78 79 80 |
@interface OFHTTPRequest: OFObject <OFCopying>
{
OFURL *_URL;
of_http_request_method_t _method;
of_http_request_protocol_version_t _protocolVersion;
OFDictionary OF_GENERIC(OFString *, OFString *) *_Nullable _headers;
of_socket_address_t _remoteAddress;
| | | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
@interface OFHTTPRequest: OFObject <OFCopying>
{
OFURL *_URL;
of_http_request_method_t _method;
of_http_request_protocol_version_t _protocolVersion;
OFDictionary OF_GENERIC(OFString *, OFString *) *_Nullable _headers;
of_socket_address_t _remoteAddress;
OF_RESERVE_IVARS(OFHTTPRequest, 4)
}
/*!
* @brief The URL of the HTTP request.
*/
@property (copy, nonatomic) OFURL *URL;
|
| ︙ | ︙ |