From 2d8a6141e24e1396bb9c5d142d195ec2536b0281 Mon Sep 17 00:00:00 2001 From: Mikhail Pozdnyakov Date: Thu, 6 Jun 2019 18:48:16 +0300 Subject: [android] Fix compilation warning with updated clang `mbgl::android::Value` move assignment operator is implicitly deleted. --- platform/android/src/style/value.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1