Overview
| Comment: | Fix a missing include.
Interestingly, gcc does not complain about it being missing, but clang |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b5da55a84c1a44642d004e3aa02244e1 |
| User & Date: | js on 2011-01-15 16:14:07 |
| Other Links: | manifest | tags |
Context
|
2011-01-15
| ||
| 17:59 | Improve OFURL. (check-in: c655fa54d2 user: js tags: trunk) | |
| 16:14 | Fix a missing include. (check-in: b5da55a84c user: js tags: trunk) | |
|
2011-01-14
| ||
| 12:22 | Add OFURL class. (check-in: 164c76c0cf user: js tags: trunk) | |
Changes
Modified tests/OFBlockTests.m from [43c311ce1f] to [08a11f6547].
| ︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #import "OFAutoreleasePool.h" #import "OFExceptions.h" #if defined(OF_OBJFW_RUNTIME) # include <objfw-rt.h> #elif defined(OF_OLD_GNU_RUNTIME) # include <objc/objc-api.h> #endif #if defined(OF_OLD_GNU_RUNTIME) || defined(OF_OBJFW_RUNTIME) # define objc_getClass objc_get_class #endif #import "TestsAppDelegate.h" | > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #import "OFAutoreleasePool.h" #import "OFExceptions.h" #if defined(OF_OBJFW_RUNTIME) # include <objfw-rt.h> #elif defined(OF_OLD_GNU_RUNTIME) # include <objc/objc-api.h> #elif defined(OF_APPLE_RUNTIME) # include <objc/runtime.h> #endif #if defined(OF_OLD_GNU_RUNTIME) || defined(OF_OBJFW_RUNTIME) # define objc_getClass objc_get_class #endif #import "TestsAppDelegate.h" |
| ︙ | ︙ |