johnno1962 / Xtrace

Trace Objective-C method calls by class or instance
MIT License
1.83k stars 132 forks source link

Marked int as unsigned to prevent compiler warning. #3

Closed jeroenleenarts closed 10 years ago

jeroenleenarts commented 10 years ago

It should be ok to use an unsigned int here cause it's a loop index based on an NSArray. Personally I would use NSUInteger, this will help when compiling for ARM64. But to stay in line with the rest of the XTrace code I opted not to do so.