Overview
Comment: | Fix warnings |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
47585409b5d56366a5d1a266f1157d55 |
User & Date: | js on 2024-08-07 19:57:46 |
Other Links: | manifest | tags |
Context
2024-08-07
| ||
20:21 | Set soversion check-in: 199ebef61a user: js tags: trunk | |
19:57 | Fix warnings check-in: 47585409b5 user: js tags: trunk | |
19:49 | Adjust to ObjFW changes check-in: f80e0a2206 user: js tags: trunk | |
Changes
Modified src/PGResult.m from [0b8c7e69a5] to [1bdfc53144].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 | - + | - (size_t)count { return PQntuples(_result); } - (id)objectAtIndex: (size_t)index { |
Modified src/PGResultRow.m from [ec1b0cfc06] to [fbcb8b8b2a].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + | @interface PGResultRowEnumerator: OFEnumerator { PGResult *_result; PGresult *_res; int _row, _pos, _count; } |
︙ | |||
139 140 141 142 143 144 145 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | - + | int i, j; if (state->extra[0] == 0) { state->extra[0] = 1; state->extra[1] = PQnfields(_res); } |
︙ |
Modified src/exceptions/PGException.m from [c06c45b0e7] to [f9cc400491].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + | @synthesize connection = _connection; + (instancetype)exceptionWithConnection: (PGConnection *)connection { return [[[self alloc] initWithConnection: connection] autorelease]; } |
︙ |
Modified tests/Tests.m from [fd95d3d886] to [730ea3b355].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ |