summaryrefslogtreecommitdiff
path: root/src/mbgl/style
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-05-11 14:51:08 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-05-12 11:26:27 -0700
commitc80f3e9d29d1c26ccc88ef30f8f17329c9bfb1b7 (patch)
tree95cdfdf7b589b47ab20aae3d469fbd627a1e2f64 /src/mbgl/style
parent095dc7b16793ed502b3429e0e4c2db7f1207094e (diff)
downloadqtlocation-mapboxgl-c80f3e9d29d1c26ccc88ef30f8f17329c9bfb1b7.tar.gz
[linux] loop-uv depends on mbgl-core for linking
Diffstat (limited to 'src/mbgl/style')
-rw-r--r--src/mbgl/style/source_impl.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mbgl/style/source_impl.hpp b/src/mbgl/style/source_impl.hpp
index 52d5036fae..42da97345a 100644
--- a/src/mbgl/style/source_impl.hpp
+++ b/src/mbgl/style/source_impl.hpp
@@ -17,6 +17,8 @@ class Source::Impl {
public:
virtual ~Impl() = default;
+ Impl& operator=(const Impl&) = delete;
+
virtual optional<std::string> getAttribution() const = 0;
const SourceType type;
@@ -25,7 +27,6 @@ public:
protected:
Impl(SourceType, std::string);
Impl(const Impl&) = default;
- Impl& operator=(const Impl&) = delete;
};
} // namespace style