Cleanup log warnings on OS X related to NSUInteger typedef differences (unsigned int vs unsigned long)

This commit is contained in:
Blake Watters
2012-08-07 09:58:30 -04:00
parent b246559112
commit 1463a7d2f8
7 changed files with 12 additions and 15 deletions

View File

@@ -43,8 +43,8 @@
- (NSUInteger)hash
{
int prime = 31;
int result = 1;
NSUInteger prime = 31;
NSUInteger result = 1;
result = prime *[self.userData hash] ? [self.mapping hash] : [self.userData hash];
return result;
}