summaryrefslogtreecommitdiff
path: root/include/mbgl/style/types.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-19 10:12:23 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-21 14:05:40 -0700
commit2df1c36ab82af663c6f612da2ffda1fdc13531c2 (patch)
tree0fde1733d2fcb2ee15967da15035716154c35618 /include/mbgl/style/types.hpp
parenta14f0d2eddd4d9eb1bbf33fed3bfffe2329acf5e (diff)
downloadqtlocation-mapboxgl-2df1c36ab82af663c6f612da2ffda1fdc13531c2.tar.gz
[core] JoinType ⇢ LineJoinType
Diffstat (limited to 'include/mbgl/style/types.hpp')
-rw-r--r--include/mbgl/style/types.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp
index 31be19cdc6..56821c32b4 100644
--- a/include/mbgl/style/types.hpp
+++ b/include/mbgl/style/types.hpp
@@ -70,7 +70,7 @@ MBGL_DEFINE_ENUM_CLASS(LineCapTypeClass, LineCapType, {
// -------------------------------------------------------------------------------------------------
-enum class JoinType : uint8_t {
+enum class LineJoinType : uint8_t {
Miter,
Bevel,
Round,
@@ -79,12 +79,12 @@ enum class JoinType : uint8_t {
FlipBevel
};
-MBGL_DEFINE_ENUM_CLASS(JoinTypeClass, JoinType, {
- { JoinType::Miter, "miter" },
- { JoinType::Bevel, "bevel" },
- { JoinType::Round, "round" },
- { JoinType::FakeRound, "fakeround" },
- { JoinType::FlipBevel, "flipbevel" },
+MBGL_DEFINE_ENUM_CLASS(LineJoinTypeClass, LineJoinType, {
+ { LineJoinType::Miter, "miter" },
+ { LineJoinType::Bevel, "bevel" },
+ { LineJoinType::Round, "round" },
+ { LineJoinType::FakeRound, "fakeround" },
+ { LineJoinType::FlipBevel, "flipbevel" },
});
// -------------------------------------------------------------------------------------------------