Differences From Artifact [b70e0a8f15]:
- File src/PGResult.h — part of check-in [fc8e42990e] at 2017-05-09 23:19:20 on branch trunk — Adjust to recent ObjFW changes (user: js, size: 348) [annotate] [blame] [check-ins using]
To Artifact [421ad0603f]:
- File
src/PGResult.h
— part of check-in
[6307a38198]
at
2017-05-10 23:46:05
on branch trunk
— Move private methods to separate headers
Also fixes a typo and adds two missing nullability annotations. (user: js, size: 201) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> OF_ASSUME_NONNULL_BEGIN @class PGResultRow; @interface PGResult: OFArray OF_GENERIC(PGResultRow *) { PGresult *_result; } | < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <libpq-fe.h> #import <ObjFW/ObjFW.h> OF_ASSUME_NONNULL_BEGIN @class PGResultRow; @interface PGResult: OFArray OF_GENERIC(PGResultRow *) { PGresult *_result; } @end OF_ASSUME_NONNULL_END |