ObjFW  Check-in [676e09bf77]

Overview
Comment:Merge branch 'master' into runtime
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | runtime
Files: files | file ages | folders
SHA3-256: 676e09bf77edfd4aa0d10050e595f8ba75065739d9d3ce49f98b6cb628299b7d
User & Date: js on 2012-04-21 11:31:32
Other Links: branch diff | manifest | tags
Context
2012-04-21
12:52
Move objc_classname_to_class. check-in: 7bbd6e43fe user: js tags: runtime
11:31
Merge branch 'master' into runtime check-in: 676e09bf77 user: js tags: runtime
11:02
Fix __has_feature check. check-in: 66db4586f7 user: js tags: trunk
10:56
Remove useless thread-checking. check-in: 555445ce0a user: js tags: runtime
Changes

Modified src/OFObject.h from [491222589f] to [9092415875].

29
30
31
32
33
34
35

36
37
38
39
40

41
42
43
44
45
46
47

#ifdef OF_OBJFW_RUNTIME
# import "runtime.h"
#else
# import <objc/objc.h>
#endif


#if defined(__has_feature) && __has_feature(objc_bool)
# undef YES
# define YES __objc_yes
# undef NO
# define NO __objc_no

#endif

#define OF_RETAIN_COUNT_MAX UINT_MAX
#define OF_INVALID_INDEX SIZE_MAX

/**
 * \brief A result of a comparison.







>
|
|
|
|
|
>







29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

#ifdef OF_OBJFW_RUNTIME
# import "runtime.h"
#else
# import <objc/objc.h>
#endif

#ifdef __has_feature
# if __has_feature(objc_bool)
#  undef YES
#  define YES __objc_yes
#  undef NO
#  define NO __objc_no
# endif
#endif

#define OF_RETAIN_COUNT_MAX UINT_MAX
#define OF_INVALID_INDEX SIZE_MAX

/**
 * \brief A result of a comparison.