summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2019-11-05 13:54:30 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2019-11-15 23:38:47 +0200
commitf73467786dff98fa2f7240c9a775dff047b29bbf (patch)
tree97b2d076ef90b3118d8357460358bb834ee18784 /platform
parent4c1d03c257754ecc1555f3e31b3c6ccf45c4bf7b (diff)
downloadqtlocation-mapboxgl-f73467786dff98fa2f7240c9a775dff047b29bbf.tar.gz
[build] Enable more warnings on the next build
Make compilation more pedantic.
Diffstat (limited to 'platform')
-rw-r--r--platform/android/src/test/render_test_collator.cpp14
-rw-r--r--platform/darwin/src/MGLAccountManager.h2
-rw-r--r--platform/darwin/src/MGLConversion.h2
-rw-r--r--platform/darwin/src/MGLStyleValue_Private.h6
4 files changed, 9 insertions, 15 deletions
diff --git a/platform/android/src/test/render_test_collator.cpp b/platform/android/src/test/render_test_collator.cpp
index e6e3b27b48..7c83318979 100644
--- a/platform/android/src/test/render_test_collator.cpp
+++ b/platform/android/src/test/render_test_collator.cpp
@@ -7,22 +7,16 @@ namespace platform {
class Collator::Impl {
public:
- Impl(bool caseSensitive_, bool diacriticSensitive_, optional<std::string>)
- : caseSensitive(caseSensitive_), diacriticSensitive(diacriticSensitive_) {}
+ Impl(optional<std::string>) {}
- bool operator==(const Impl& other) const { return true; }
+ bool operator==(const Impl&) const { return true; }
- int compare(const std::string& lhs, const std::string& rhs) const { return 0; }
+ int compare(const std::string&, const std::string&) const { return 0; }
std::string resolvedLocale() const { return ""; }
-
-private:
- bool caseSensitive;
- bool diacriticSensitive;
};
-Collator::Collator(bool caseSensitive, bool diacriticSensitive, optional<std::string> locale_)
- : impl(std::make_shared<Impl>(caseSensitive, diacriticSensitive, std::move(locale_))) {}
+Collator::Collator(bool, bool, optional<std::string> locale_) : impl(std::make_shared<Impl>(std::move(locale_))) {}
int Collator::compare(const std::string& lhs, const std::string& rhs) const {
return impl->compare(lhs, rhs);
diff --git a/platform/darwin/src/MGLAccountManager.h b/platform/darwin/src/MGLAccountManager.h
index 0d833a7ba7..d1983a4ddc 100644
--- a/platform/darwin/src/MGLAccountManager.h
+++ b/platform/darwin/src/MGLAccountManager.h
@@ -34,7 +34,7 @@ MGL_EXPORT
and the type `String`. Alternatively, you may call this method from your
application delegate’s `-applicationDidFinishLaunching:` method.
*/
-@property (class, nullable) NSString *accessToken;
+@property (class, assign, nullable) NSString *accessToken;
@end
diff --git a/platform/darwin/src/MGLConversion.h b/platform/darwin/src/MGLConversion.h
index d6de4151b9..3f7ffdd0c1 100644
--- a/platform/darwin/src/MGLConversion.h
+++ b/platform/darwin/src/MGLConversion.h
@@ -124,7 +124,7 @@ public:
}
}
- static optional<GeoJSON> toGeoJSON(const Holder& holder, Error& error) {
+ static optional<GeoJSON> toGeoJSON(const Holder&, Error& error) {
error = { "toGeoJSON not implemented" };
return {};
}
diff --git a/platform/darwin/src/MGLStyleValue_Private.h b/platform/darwin/src/MGLStyleValue_Private.h
index 07dbd31238..43f0b9d282 100644
--- a/platform/darwin/src/MGLStyleValue_Private.h
+++ b/platform/darwin/src/MGLStyleValue_Private.h
@@ -140,7 +140,7 @@ private: // Private utilities for converting from mgl to mbgl values
class = typename std::enable_if<!std::is_enum<MBGLEnum>::value>::type,
typename MGLEnum = ObjCEnum,
class = typename std::enable_if<!std::is_enum<MGLEnum>::value>::type>
- NSObject* toRawStyleSpecValue(NSObject *rawMGLValue, MBGLEnum &mbglValue) {
+ NSObject* toRawStyleSpecValue(NSObject *rawMGLValue, MBGLEnum &) {
if ([rawMGLValue isKindOfClass:[NSValue class]]) {
const auto rawNSValue = (NSValue *)rawMGLValue;
if (strcmp([rawNSValue objCType], @encode(CGVector)) == 0) {
@@ -157,13 +157,13 @@ private: // Private utilities for converting from mgl to mbgl values
class = typename std::enable_if<std::is_enum<MBGLEnum>::value>::type,
typename MGLEnum = ObjCEnum,
class = typename std::enable_if<std::is_enum<MGLEnum>::value>::type>
- NSString* toRawStyleSpecValue(ObjCType rawValue, MBGLEnum &mbglValue) {
+ NSString* toRawStyleSpecValue(ObjCType rawValue, MBGLEnum &) {
MGLEnum mglEnum;
[rawValue getValue:&mglEnum];
return @(mbgl::Enum<MGLEnum>::toString(mglEnum));
}
- NSObject* toRawStyleSpecValue(MGLColor *color, MBGLType &mbglValue) {
+ NSObject* toRawStyleSpecValue(MGLColor *color, MBGLType &) {
return @(color.mgl_color.stringify().c_str());
}