Also fixes a typo and adds two missing nullability annotations. FossilOrigin-Name: 6307a381989719ad89067e1ae2cb5d454dd0b77a83cc6141785067365767e7f6
12 lines
260 B
Objective-C
12 lines
260 B
Objective-C
#import "PGResultRow.h"
|
|
|
|
OF_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PGResultRow ()
|
|
+ (instancetype)PG_rowWithResult: (PGResult *)result
|
|
row: (int)row;
|
|
- PG_initWithResult: (PGResult *)result
|
|
row: (int)row OF_METHOD_FAMILY(init);
|
|
@end
|
|
|
|
OF_ASSUME_NONNULL_END
|