Fix a stupid type mismatch in ASWeakSet

This commit is contained in:
Adlai Holler
2016-01-08 00:02:53 -08:00
parent 70bc80a304
commit 55e3f1ee00

View File

@@ -61,7 +61,7 @@
*/
- (NSUInteger)count
{
NSInteger count = 0;
NSUInteger count = 0;
for (__unused id object in _mapTable) {
count += 1;
}