summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2018-12-21 14:14:03 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-01-04 11:51:33 +0200
commitc621b8100d8f75a77789371d8c33a7f5dff18651 (patch)
treec9b1290a8496d28f0f55f91ae79d58da0ed945e6 /include
parent4e86bca5abecdaa6dcdc361421fe73655e7e1b69 (diff)
downloadqtlocation-mapboxgl-c621b8100d8f75a77789371d8c33a7f5dff18651.tar.gz
[core] Drop LayerType
Drop LayerType and its remaining usages. The generic code should be layer type agnostic.
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/style/layer.hpp1
-rw-r--r--include/mbgl/style/layer_type.hpp20
2 files changed, 0 insertions, 21 deletions
diff --git a/include/mbgl/style/layer.hpp b/include/mbgl/style/layer.hpp
index bd0905cd6d..c526182033 100644
--- a/include/mbgl/style/layer.hpp
+++ b/include/mbgl/style/layer.hpp
@@ -3,7 +3,6 @@
#include <mbgl/util/peer.hpp>
#include <mbgl/util/immutable.hpp>
#include <mbgl/util/optional.hpp>
-#include <mbgl/style/layer_type.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/style/conversion.hpp>
diff --git a/include/mbgl/style/layer_type.hpp b/include/mbgl/style/layer_type.hpp
deleted file mode 100644
index 0987ea4d0a..0000000000
--- a/include/mbgl/style/layer_type.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-namespace mbgl {
-namespace style {
-
-enum class LayerType {
- Fill,
- Line,
- Circle,
- Symbol,
- Raster,
- Hillshade,
- Background,
- Custom,
- FillExtrusion,
- Heatmap,
-};
-
-} // namespace style
-} // namespace mbgl