summaryrefslogtreecommitdiff
path: root/include/mbgl/map/update.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/map/update.hpp')
-rw-r--r--include/mbgl/map/update.hpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/mbgl/map/update.hpp b/include/mbgl/map/update.hpp
deleted file mode 100644
index 1da7e3ac92..0000000000
--- a/include/mbgl/map/update.hpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-#include <mbgl/util/traits.hpp>
-
-namespace mbgl {
-
-enum class Update {
- Nothing = 0,
- Dimensions = 1 << 1,
- Classes = 1 << 2,
- RecalculateStyle = 1 << 3,
- RenderStill = 1 << 4,
- Repaint = 1 << 5,
- AnnotationStyle = 1 << 6,
- AnnotationData = 1 << 7,
- Layout = 1 << 8
-};
-
-constexpr Update operator|(Update lhs, Update rhs) {
- return Update(mbgl::underlying_type(lhs) | mbgl::underlying_type(rhs));
-}
-
-constexpr Update& operator|=(Update& lhs, const Update& rhs) {
- return (lhs = lhs | rhs);
-}
-
-constexpr bool operator& (Update lhs, Update rhs) {
- return mbgl::underlying_type(lhs) & mbgl::underlying_type(rhs);
-}
-
-} // namespace mbgl