summaryrefslogtreecommitdiff
path: root/include/mbgl/style/types.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-19 10:16:21 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-21 14:05:40 -0700
commit2ea450205d8b89db28f7160365b73d26bf4b8812 (patch)
tree6ce2c8116e4c4f66c9b80e23dbb46000a0914fbd /include/mbgl/style/types.hpp
parent2df1c36ab82af663c6f612da2ffda1fdc13531c2 (diff)
downloadqtlocation-mapboxgl-2ea450205d8b89db28f7160365b73d26bf4b8812.tar.gz
[core] PlacementType ⇢ SymbolPlacementType
Diffstat (limited to 'include/mbgl/style/types.hpp')
-rw-r--r--include/mbgl/style/types.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp
index 56821c32b4..999b8d8b79 100644
--- a/include/mbgl/style/types.hpp
+++ b/include/mbgl/style/types.hpp
@@ -113,14 +113,14 @@ MBGL_DEFINE_ENUM_CLASS(RotateAnchorTypeClass, RotateAnchorType, {
// -------------------------------------------------------------------------------------------------
-enum class PlacementType : bool {
+enum class SymbolPlacementType : bool {
Point,
Line,
};
-MBGL_DEFINE_ENUM_CLASS(PlacementTypeClass, PlacementType, {
- { PlacementType::Point, "point" },
- { PlacementType::Line, "line" },
+MBGL_DEFINE_ENUM_CLASS(SymbolPlacementTypeClass, SymbolPlacementType, {
+ { SymbolPlacementType::Point, "point" },
+ { SymbolPlacementType::Line, "line" },
});
// -------------------------------------------------------------------------------------------------