Prefix all ivars with an underscore.

FossilOrigin-Name: 8c8a4313228bba7114d582a6802a2df53a1fb357f5c0805ae58531dd4c799d8c
This commit is contained in:
Jonathan Schleifer 2013-02-13 23:40:58 +00:00
parent 7b323460a5
commit b3eaf2f272
11 changed files with 114 additions and 129 deletions

View file

@ -6,9 +6,9 @@
@interface PGResultRow: OFDictionary
{
PGResult *result;
PGresult *res;
int row;
PGResult *_result;
PGresult *_res;
int _row;
}
+ rowWithResult: (PGResult*)result