summaryrefslogtreecommitdiffstats
path: root/include/mapbox/geometry/multi_polygon.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mapbox/geometry/multi_polygon.hpp')
-rw-r--r--include/mapbox/geometry/multi_polygon.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/mapbox/geometry/multi_polygon.hpp b/include/mapbox/geometry/multi_polygon.hpp
deleted file mode 100644
index ad230a0..0000000
--- a/include/mapbox/geometry/multi_polygon.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-// mapbox
-#include <mapbox/geometry/polygon.hpp>
-// stl
-#include <vector>
-
-namespace mapbox {
-namespace geometry {
-
-template <typename T, template <typename...> class Cont = std::vector>
-struct multi_polygon : Cont<polygon<T>>
-{
- using coordinate_type = T;
- using polygon_type = polygon<T>;
- using container_type = Cont<polygon_type>;
- using container_type::container_type;
-};
-
-} // namespace geometry
-} // namespace mapbox