summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorartemp <artem@mapnik.org>2014-11-07 11:50:33 +0000
committerartemp <artem@mapnik.org>2014-11-07 11:50:33 +0000
commit52a7629b350b59ee46e7d7aead63b1a4cda3714c (patch)
treea275999c9159c5c940cf2e4d284328079d2e3092
parentf42d39dc6eca3154cf0de9252ac70b465022410e (diff)
parentfb7f23884bedb0a2a825baa8dc14d6b84384a0e3 (diff)
downloadqtlocation-mapboxgl-52a7629b350b59ee46e7d7aead63b1a4cda3714c.tar.gz
Merge branch 'master' into image-readers
-rw-r--r--gyp/common.gypi12
-rw-r--r--platform/darwin/image.mm4
2 files changed, 13 insertions, 3 deletions
diff --git a/gyp/common.gypi b/gyp/common.gypi
index df055b199f..6d5fb7690d 100644
--- a/gyp/common.gypi
+++ b/gyp/common.gypi
@@ -14,7 +14,16 @@
'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'GCC_ENABLE_CPP_RTTI':'YES',
- 'OTHER_CPLUSPLUSFLAGS': [ '-Werror', '-Wall', '-Wextra', '-Wshadow', '-Wno-variadic-macros', '-frtti', '-fexceptions' ],
+ 'OTHER_CPLUSPLUSFLAGS': [
+ '-Werror',
+ '-Wall',
+ '-Wextra',
+ '-Wshadow',
+ '-Wno-variadic-macros',
+ '-frtti',
+ '-fexceptions',
+ '-Wno-error=unused-parameter',
+ ],
'GCC_WARN_PEDANTIC': 'YES',
'GCC_WARN_UNINITIALIZED_AUTOS': 'YES_AGGRESSIVE',
},
@@ -23,6 +32,7 @@
'cflags_cc': [
'-Wno-unknown-pragmas', # We are using '#pragma mark', but it is only available on Darwin.
'-Wno-literal-suffix', # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61653
+ '-Wno-error=unused-parameter',
],
}],
],
diff --git a/platform/darwin/image.mm b/platform/darwin/image.mm
index 50c871533d..b8df3c403e 100644
--- a/platform/darwin/image.mm
+++ b/platform/darwin/image.mm
@@ -93,8 +93,8 @@ Image::Image(const std::string &source_data) {
return;
}
- width = CGImageGetWidth(image);
- height = CGImageGetHeight(image);
+ width = uint32_t(CGImageGetWidth(image));
+ height = uint32_t(CGImageGetHeight(image));
CGRect rect = {{ 0, 0 }, { static_cast<CGFloat>(width), static_cast<CGFloat>(height) }};
img = ::std::unique_ptr<char[]>(new char[width * height * 4]());