summaryrefslogtreecommitdiff
path: root/src/mbgl/util/box.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/box.hpp')
-rw-r--r--src/mbgl/util/box.hpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mbgl/util/box.hpp b/src/mbgl/util/box.hpp
deleted file mode 100644
index 2806fb95fc..0000000000
--- a/src/mbgl/util/box.hpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef MBGL_UTIL_BOX
-#define MBGL_UTIL_BOX
-
-#include <mbgl/util/tile_coordinate.hpp>
-
-namespace mbgl {
-
-struct box {
- box(TileCoordinate tl_, TileCoordinate tr_, TileCoordinate br_, TileCoordinate bl_) :
- tl(tl_), tr(tr_), br(br_), bl(bl_) {}
- TileCoordinate tl, tr, br, bl;
-};
-
-} // namespace mbgl
-
-#endif