ObjFW  Check-in [bb18681460]

Overview
Comment:Fix missing include
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bb18681460cb45120eaa199215896380994722649a2f0a2fb44e5cbc5f5e10cf
User & Date: js on 2020-09-27 23:27:30
Other Links: manifest | tags
Context
2020-09-27
23:27
tests: Fix typo check-in: 8a01db8654 user: js tags: trunk
23:27
Fix missing include check-in: bb18681460 user: js tags: trunk
03:37
Update buildsys check-in: a7cc717161 user: js tags: trunk
Changes

Modified src/runtime/autorelease.m from [81f19ca445] to [e5ceb906d0].

23
24
25
26
27
28
29

30
31
32
33
34
35
36
#ifdef OF_OBJFW_RUNTIME
# import "ObjFWRT.h"
# import "private.h"
#else
# import <objc/runtime.h>
#endif


#if !defined(OF_HAVE_COMPILER_TLS) && defined(OF_HAVE_THREADS)
# import "tlskey.h"
#endif

#ifndef OF_OBJFW_RUNTIME
@interface DummyObject
- (void)release;







>







23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifdef OF_OBJFW_RUNTIME
# import "ObjFWRT.h"
# import "private.h"
#else
# import <objc/runtime.h>
#endif

#import "macros.h"
#if !defined(OF_HAVE_COMPILER_TLS) && defined(OF_HAVE_THREADS)
# import "tlskey.h"
#endif

#ifndef OF_OBJFW_RUNTIME
@interface DummyObject
- (void)release;