Overview
Comment: | Fix method name mismatch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
770a096b55820c6e2d290aebabc455ec |
User & Date: | js on 2021-04-29 22:46:16 |
Other Links: | manifest | tags |
Context
2024-05-04
| ||
22:22 | Update buildsys check-in: 0ba26fcfe3 user: js tags: trunk | |
2021-04-29
| ||
22:46 | Fix method name mismatch check-in: 770a096b55 user: js tags: trunk | |
22:36 | Adjust to ObjFW changes check-in: 0af9225d64 user: js tags: trunk | |
Changes
Modified src/PGResultRow.m from [007cd2722f] to [ec1b0cfc06].
︙ | ︙ | |||
64 65 66 67 68 69 70 | @interface PGResultRowKeyEnumerator: PGResultRowEnumerator @end @interface PGResultRowObjectEnumerator: PGResultRowEnumerator @end @implementation PGResultRow | | | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | @interface PGResultRowKeyEnumerator: PGResultRowEnumerator @end @interface PGResultRowObjectEnumerator: PGResultRowEnumerator @end @implementation PGResultRow + (instancetype)pg_rowWithResult: (PGResult *)result row: (int)row { return [[[self alloc] pg_initWithResult: result row: row] autorelease]; } - (instancetype)pg_initWithResult: (PGResult *)result row: (int)row { self = [super init]; _result = [result retain]; _res = result.pg_result; _row = row; |
︙ | ︙ |