ObjFW  Diff

Differences From Artifact [0778c8e9f4]:

To Artifact [ac2041ef80]:


14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import <stdint.h>

/**
 * The OFObject class is the base class for all other classes inside ObjFW.
 */
@interface OFObject: Object
{
	void **__memchunks;
	size_t __memchunks_size;
}

/**
 * Initialize the already allocated object.
 * Also sets up the memory pool for the object.
 *







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import <stdint.h>

/**
 * The OFObject class is the base class for all other classes inside ObjFW.
 */
@interface OFObject: Object
{
	void   **__memchunks;
	size_t __memchunks_size;
}

/**
 * Initialize the already allocated object.
 * Also sets up the memory pool for the object.
 *