summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-06-06 18:48:16 +0300
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-06-06 18:50:32 +0300
commit2d8a6141e24e1396bb9c5d142d195ec2536b0281 (patch)
tree9ac52e0c31f8b66342818925ff1e85e89f2c7179
parent76d8fd0a798ac49445b0211f4c3b04909a61e344 (diff)
downloadqtlocation-mapboxgl-upstream/mikhail_android_compile_warning.tar.gz
[android] Fix compilation warning with updated clangupstream/mikhail_android_compile_warning
`mbgl::android::Value` move assignment operator is implicitly deleted.
-rw-r--r--platform/android/src/style/value.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/src/style/value.hpp b/platform/android/src/style/value.hpp
index b3e665e57b..0c702bb465 100644
--- a/platform/android/src/style/value.hpp
+++ b/platform/android/src/style/value.hpp
@@ -13,7 +13,7 @@ public:
Value(jni::JNIEnv&, const jni::Object<>&);
Value(Value&&) = default;
- Value& operator=(Value&&) = default;
+ Value& operator=(Value&&) = delete;
Value(const Value&) = delete;
Value& operator=(const Value&) = delete;