Skip to content

Instantly share code, notes, and snippets.

@steveriggins
Created March 28, 2013 00:32
Show Gist options
  • Save steveriggins/5259496 to your computer and use it in GitHub Desktop.
Save steveriggins/5259496 to your computer and use it in GitHub Desktop.
Special Style Guide for code that is to be reviewed by Tim
- (BOOL)cmpObjAddr:(id)objAddr otherObj:(id)objOtherAddr
{
int cVar = (int)objAddr;
int dVar = (int)objOtherAddr;
if (cVar != dVar) {
char c = *(char *)(cVar);
cVarModifier(c);
}
return (cVar != dVar);
}
@timtrautmann
Copy link

You are fired.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment