ObjFW  Check-in [7ad078d4e6]

Overview
Comment:Remove useless import.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7ad078d4e6f56d2f3799c0af59accb5ef282e8861497d5876fe5854239e2c1ba
User & Date: js on 2010-03-18 19:28:35
Other Links: manifest | tags
Context
2010-03-19
00:53
Better out of range checking in OFMutableDictionary. check-in: 12689ed614 user: js tags: trunk
2010-03-18
19:28
Remove useless import. check-in: 7ad078d4e6 user: js tags: trunk
15:25
Mach-O needs this initialized, even though we never access it. check-in: cd2b957955 user: js tags: trunk
Changes

Modified src/objc_properties.m from [3e5df6911e] to [3ed2028a62].

9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 * the packaging of this file.
 */

#include "config.h"

#include <assert.h>

#import <objc/objc.h>

#import "OFExceptions.h"

#ifdef OF_THREADS
# import "threading.h"
# define NUM_SPINLOCKS 8	/* needs to be a power of 2 */
# define SPINLOCK_HASH(p) ((uintptr_t)p >> 4) & (NUM_SPINLOCKS - 1)
static of_spinlock_t spinlocks[NUM_SPINLOCKS];
#endif







<
<
|







9
10
11
12
13
14
15


16
17
18
19
20
21
22
23
 * the packaging of this file.
 */

#include "config.h"

#include <assert.h>



#import "OFObject.h"

#ifdef OF_THREADS
# import "threading.h"
# define NUM_SPINLOCKS 8	/* needs to be a power of 2 */
# define SPINLOCK_HASH(p) ((uintptr_t)p >> 4) & (NUM_SPINLOCKS - 1)
static of_spinlock_t spinlocks[NUM_SPINLOCKS];
#endif