Differences From Artifact [9973173cd1]:
- File
src/OFObject.h
— part of check-in
[012c6b5786]
at
2017-05-28 11:24:35
on branch trunk
— Make +[resolve{Class,Instance}Method:] return BOOL
Other runtimes expect it to be BOOL, not bool. (user: js, size: 27477) [annotate] [blame] [check-ins using]
To Artifact [299d01c5f5]:
- File src/OFObject.h — part of check-in [6b66bda9eb] at 2017-09-27 22:38:18 on branch 0.90 — More nullability fixes (user: js, size: 27588) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
644 645 646 647 648 649 650 | /*! * @brief Allocates memory and stores it in the object's memory pool. * * It will be freed automatically when the object is deallocated. * * @param size The size of the memory to allocate | | > | > | 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | /*! * @brief Allocates memory and stores it in the object's memory pool. * * It will be freed automatically when the object is deallocated. * * @param size The size of the memory to allocate * @return A pointer to the allocated memory. May return NULL if the specified * size is 0. */ - (void *)allocMemoryWithSize: (size_t)size; /*! * @brief Allocates memory for the specified number of items and stores it in * the object's memory pool. * * It will be freed automatically when the object is deallocated. * * @param size The size of each item to allocate * @param count The number of items to allocate * @return A pointer to the allocated memory. May return NULL if the specified * size or count is 0. */ - (void *)allocMemoryWithSize: (size_t)size count: (size_t)count; /*! * @brief Resizes memory in the object's memory pool to the specified size. * |
| ︙ | ︙ |