ObjFW  Diff

Differences From Artifact [8e4fd57b89]:

To Artifact [c032ad54fa]:


51
52
53
54
55
56
57
58

59
60
61
62
63
64
65
66
67
68
69


70
71
72
51
52
53
54
55
56
57

58
59
60
61
62
63
64
65
66
67


68
69
70
71
72







-
+









-
-
+
+



 * @param type The MessagePack extension type
 * @param data The data for the extension
 * @return A new, autoreleased OFMessagePackRepresentation
 */
+ (instancetype)extensionWithType: (int8_t)type
			     data: (OFData *)data;

- init OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;

/*!
 * @brief Initializes an already allocated OFMessagePackRepresentation with the
 *	  specified type and data.
 *
 * @param type The MessagePack extension type
 * @param data The data for the extension
 * @return An initialized OFMessagePackRepresentation
 */
- initWithType: (int8_t)type
	  data: (OFData *)data OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithType: (int8_t)type
			data: (OFData *)data OF_DESIGNATED_INITIALIZER;
@end

OF_ASSUME_NONNULL_END