Overview
| Comment: | Fix missing include in OFBlock.m for the Apple 32 bit runtime. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ac7830ff4f97e8fb9eea7f1ece884307 |
| User & Date: | js on 2011-03-29 19:27:26 |
| Other Links: | manifest | tags |
Context
|
2011-03-29
| ||
| 19:28 | Work around a compiler bug. (check-in: 0972a6eb56 user: js tags: trunk) | |
| 19:27 | Fix missing include in OFBlock.m for the Apple 32 bit runtime. (check-in: ac7830ff4f user: js tags: trunk) | |
| 19:22 | Use a value in the -[doubleValue] test that only fits into a double. (check-in: b9803c90d0 user: js tags: trunk) | |
Changes
Modified src/OFBlock.m from [45f9d51398] to [cb7452fd95].
| ︙ | ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #if defined(OF_APPLE_RUNTIME) && !defined(__OBJC2__) # import <objc/runtime.h> #endif #import "OFBlock.h" #import "OFAllocFailedException.h" #import "OFNotImplementedException.h" #ifdef OF_ATOMIC_OPS # import "atomic.h" #endif #ifdef OF_THREADS # import "threading.h" | > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #if defined(OF_APPLE_RUNTIME) && !defined(__OBJC2__) # import <objc/runtime.h> #endif #import "OFBlock.h" #import "OFAllocFailedException.h" #import "OFInitializationFailedException.h" #import "OFNotImplementedException.h" #ifdef OF_ATOMIC_OPS # import "atomic.h" #endif #ifdef OF_THREADS # import "threading.h" |
| ︙ | ︙ |