Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The static analyzer points out a potential ambiguity where `if (number) { ... }`, where `number` is a `NSNumber` might be construed as either `if (number != nil) { ... }` or `if ([number boolValue]) { ... }`. They suggest making it explicit to avoid any ambiguity.
- Loading branch information