ObjFW  Check-in [478119cde4]

Overview
Comment:Minor style corrections
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 478119cde42632703786b6238b8385cb21fda9879647e125a4b934b0c166c616
User & Date: js on 2014-05-15 15:46:43
Other Links: manifest | tags
Context
2014-05-15
15:54
Update buildsys check-in: 8eb6f64179 user: js tags: trunk
15:46
Minor style corrections check-in: 478119cde4 user: js tags: trunk
15:32
Enable -pedantic check-in: 9c0f66d49d user: js tags: trunk
Changes

Modified src/runtime/runtime-private.h from [bdd53fa1db] to [31a1b9496e].

135
136
137
138
139
140
141
142

143
144
145
146
147


148
149
150
151
152
153
154
135
136
137
138
139
140
141

142
143
144
145


146
147
148
149
150
151
152
153
154







-
+



-
-
+
+







extern struct objc_hashtable* objc_hashtable_new(uint32_t (*)(const void*),
    bool (*)(const void*, const void*), uint32_t);
extern struct objc_hashtable_bucket objc_deleted_bucket;
extern void objc_hashtable_set(struct objc_hashtable*, const void*,
    const void*);
extern void* objc_hashtable_get(struct objc_hashtable*, const void*);
extern void objc_hashtable_delete(struct objc_hashtable*, const void*);
extern void objc_hashtable_free(struct objc_hashtable *h);
extern void objc_hashtable_free(struct objc_hashtable*);
extern void objc_register_selector(struct objc_abi_selector*);
extern void objc_register_all_selectors(struct objc_abi_symtab*);
extern void objc_unregister_all_selectors(void);
extern struct objc_sparsearray *objc_sparsearray_new(uint_fast8_t);
extern void *objc_sparsearray_get(struct objc_sparsearray*, uintptr_t);
extern struct objc_sparsearray* objc_sparsearray_new(uint_fast8_t);
extern void* objc_sparsearray_get(struct objc_sparsearray*, uintptr_t);
extern void objc_sparsearray_set(struct objc_sparsearray*, uintptr_t, void*);
extern void objc_sparsearray_free(struct objc_sparsearray*);
extern struct objc_dtable* objc_dtable_new(void);
extern void objc_dtable_copy(struct objc_dtable*, struct objc_dtable*);
extern void objc_dtable_set(struct objc_dtable*, uint32_t, IMP);
extern void objc_dtable_free(struct objc_dtable*);
extern void objc_dtable_cleanup(void);