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