Changes between Initial Version and Version 1 of Ticket #37974, comment 8
- Timestamp:
- Feb 8, 2013, 9:11:54 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37974, comment 8
initial v1 4 4 From eyeballing it, it looks like the warnings are either: 5 5 - `printf`-style format specifiers that don’t quite match the arguments given. These should be fine to commit; plus, they’re just for logging. 6 - Redundant invocations of `[NSString +stringWithString]` with an NSString literal argument. Those might once have been necessary for memory management. 6 - Redundant invocations of `[NSString +stringWithString]` with an NSString literal argument. Those might once have been necessary for memory management. They still might be; I’m not familiar enough with non-ARC code to say whether it’s safe to use NSString literals like this.