diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-19 10:16:21 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-21 14:05:40 -0700 |
commit | 2ea450205d8b89db28f7160365b73d26bf4b8812 (patch) | |
tree | 6ce2c8116e4c4f66c9b80e23dbb46000a0914fbd /include | |
parent | 2df1c36ab82af663c6f612da2ffda1fdc13531c2 (diff) | |
download | qtlocation-mapboxgl-2ea450205d8b89db28f7160365b73d26bf4b8812.tar.gz |
[core] PlacementType ⇢ SymbolPlacementType
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/types.hpp | 8 |
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" }, }); // ------------------------------------------------------------------------------------------------- |