ObjFW  Check-in [d70b6cca02]

Overview
Comment:runtime: Fix missing _Nonnull
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d70b6cca02d9f0f4d931df6a79006825fdbba017d6c037a1cc1138e9c879b6b1
User & Date: js on 2020-12-20 15:07:43
Other Links: manifest | tags
Context
2020-12-20
16:59
runtime: Fix typo check-in: aba0e87ac3 user: js tags: trunk
15:07
runtime: Fix missing _Nonnull check-in: d70b6cca02 user: js tags: trunk
14:04
Fix compilation for AmigaOS 4 check-in: a68265627e user: js tags: trunk
Changes

Modified src/runtime/private.h from [62a0f3f2e0] to [dfdcb65a2c].

346
347
348
349
350
351
352
353
354


355
356
357
358
359
360
361
346
347
348
349
350
351
352


353
354
355
356
357
358
359
360
361







-
-
+
+







	uint8_t i = idx >> 8;
	uint8_t j = idx;

	return dtable->buckets[i]->buckets[j];
#endif
}

extern void OF_NO_RETURN_FUNC objc_error(const char *file, unsigned int line,
    const char *format, ...);
extern void OF_NO_RETURN_FUNC objc_error(const char *_Nonnull file,
    unsigned int line, const char *_Nonnull format, ...);
#define OBJC_ERROR(...) objc_error(__FILE__, __LINE__, __VA_ARGS__)

#if defined(OF_ELF)
# if defined(OF_X86_64) || defined(OF_X86) || defined(OF_POWERPC) || \
    defined(OF_ARM64) || defined(OF_ARM) || \
    defined(OF_MIPS64_N64) || defined(OF_MIPS) || \
    defined(OF_SPARC64) || defined(OF_SPARC)