Overview
Comment: | uintptr_t might be better here. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
453532ccf3bd75558feb18af6a2c6c8b |
User & Date: | js on 2010-01-17 13:11:21 |
Other Links: | manifest | tags |
Context
2010-01-22
| ||
18:40 |
Clean up OFStream and OFSocket interface. This allows better compile-time checks. check-in: 273d5b90f8 user: js tags: trunk | |
2010-01-17
| ||
13:11 | uintptr_t might be better here. check-in: 453532ccf3 user: js tags: trunk | |
2010-01-16
| ||
15:22 | Fix Makefiles forgotten in lib version bump. check-in: 5b43f00359 user: js tags: trunk | |
Changes
Modified src/OFObject.m from [e24c28f144] to [844da0afa5].
︙ | ︙ | |||
296 297 298 299 300 301 302 | /* Classes containing data should reimplement this! */ return (self == obj ? YES : NO); } - (uint32_t)hash { /* Classes containing data should reimplement this! */ | | | 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | /* Classes containing data should reimplement this! */ return (self == obj ? YES : NO); } - (uint32_t)hash { /* Classes containing data should reimplement this! */ return (uint32_t)(uintptr_t)self; } - addMemoryToPool: (void*)ptr { void **memchunks; size_t memchunks_size; |
︙ | ︙ |