From 8e2170c8855456258de8ffd49d22a621b95e9fb2 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 30 Aug 2016 12:43:46 -0700 Subject: [core] Batch source updates --- include/mbgl/map/update.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/mbgl/map') 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 -#include - 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) { -- cgit v1.2.1