Differences From Artifact [cc1becd34f]:
- File src/autorelease.h — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js, size: 1122) [annotate] [blame] [check-ins using]
To Artifact [bf550554f1]:
- File src/autorelease.h — part of check-in [9e76144ef8] at 2015-06-13 22:26:05 on branch trunk — Add support for and use the new nullability (user: js, size: 1190) [annotate] [blame] [check-ins using]
| ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + + |
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "macros.h"
OF_ASSUME_NONNULL_BEGIN
/*! @file */
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Creates a new autorelease pool.
|
| ︙ | |||
39 40 41 42 43 44 45 | 43 44 45 46 47 48 49 50 51 | + + | * @param object The object to autorelease * @return The autoreleased object */ extern id _objc_rootAutorelease(id object); #ifdef __cplusplus } #endif OF_ASSUME_NONNULL_END |