summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLShape.mm
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2017-01-11 03:08:05 -0800
committerGitHub <noreply@github.com>2017-01-11 03:08:05 -0800
commit581fb3849da8ce97e557bb3633b886fcc369f6cb (patch)
tree503b3a3657d59218c40712c853640032c51da169 /platform/darwin/src/MGLShape.mm
parentb6cf87f5e763ec6849e4fe34f2dd20fc8a0d0d52 (diff)
downloadqtlocation-mapboxgl-581fb3849da8ce97e557bb3633b886fcc369f6cb.tar.gz
[ios, macos] Fix miscellaneous static analyzer warnings (#7670)
* [ios, macos] Fixed static analyzer warnings Fixed static analyzer warnings in MGLNetworkConfiguration, MGLRasterSource, and MGLShape. * [ios] Fixed static analyzer warnings Fixed static analyzer warnings in MGLAnnotationImage. * [macos] Fixed static analyzer warnings Fixed static analyzer warnings in MGLAnnotationImage and NSImage(MGLAdditions). * [ios, macos] Two pointer-equal images are object-equal by definition
Diffstat (limited to 'platform/darwin/src/MGLShape.mm')
-rw-r--r--platform/darwin/src/MGLShape.mm4
1 files changed, 1 insertions, 3 deletions
diff --git a/platform/darwin/src/MGLShape.mm b/platform/darwin/src/MGLShape.mm
index 4ddf7c9df7..984235fd97 100644
--- a/platform/darwin/src/MGLShape.mm
+++ b/platform/darwin/src/MGLShape.mm
@@ -94,9 +94,7 @@ bool operator==(const CLLocationCoordinate2D lhs, const CLLocationCoordinate2D r
- (NSUInteger)hash
{
- NSUInteger hash;
- hash += _title.hash;
- hash += _subtitle.hash;
+ NSUInteger hash = _title.hash + _subtitle.hash;
#if !TARGET_OS_IPHONE
hash += _toolTip.hash;
#endif