summaryrefslogtreecommitdiff
path: root/include/mbgl/map
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-08-30 12:43:46 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-09-06 14:29:22 -0700
commit8e2170c8855456258de8ffd49d22a621b95e9fb2 (patch)
tree505c4eba02f5b9e237cf44984d8078c3a13e8414 /include/mbgl/map
parent6c23a6a095097c457c896dfeb1a3005a4f618f41 (diff)
downloadqtlocation-mapboxgl-8e2170c8855456258de8ffd49d22a621b95e9fb2.tar.gz
[core] Batch source updates
Diffstat (limited to 'include/mbgl/map')
-rw-r--r--include/mbgl/map/update.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/mbgl/map/update.hpp b/include/mbgl/map/update.hpp
index 36ce59c01d..1da7e3ac92 100644
--- a/include/mbgl/map/update.hpp
+++ b/include/mbgl/map/update.hpp
@@ -2,11 +2,9 @@
#include <mbgl/util/traits.hpp>
-#include <cstdint>
-
namespace mbgl {
-enum class Update : uint8_t {
+enum class Update {
Nothing = 0,
Dimensions = 1 << 1,
Classes = 1 << 2,
@@ -15,6 +13,7 @@ enum class Update : uint8_t {
Repaint = 1 << 5,
AnnotationStyle = 1 << 6,
AnnotationData = 1 << 7,
+ Layout = 1 << 8
};
constexpr Update operator|(Update lhs, Update rhs) {