summaryrefslogtreecommitdiff
path: root/boost/polygon/polygon_traits.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/polygon/polygon_traits.hpp')
-rw-r--r--boost/polygon/polygon_traits.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/boost/polygon/polygon_traits.hpp b/boost/polygon/polygon_traits.hpp
index dddbf34d5d..1149483c5a 100644
--- a/boost/polygon/polygon_traits.hpp
+++ b/boost/polygon/polygon_traits.hpp
@@ -179,17 +179,6 @@ namespace boost { namespace polygon{
};
- template <typename T>
- struct polygon_90_mutable_traits<T, typename gtl_same_type<polygon_concept, typename geometry_concept<T>::type>::type> {
- // Set the data of a polygon with the unique coordinates in an iterator, starting with an x
- template <typename iT>
- static inline T& set_compact(T& t, iT input_begin, iT input_end) {
- typedef iterator_points_to_compact<iT, typename polygon_traits<T>::point_type> iTp;
- t.set_points(iTp(polygon_traits<T>::begin_points(t)), iTp(polygon_traits<T>::end_points(t)));
- return t;
- }
- };
-
template <typename T, typename enable = void>
struct polygon_mutable_traits {
@@ -1567,7 +1556,6 @@ namespace boost { namespace polygon{
typedef const hole_type* iterator_holes_type;
static inline iterator_holes_type begin_holes(const hole_type& t) { return &t; }
static inline iterator_holes_type end_holes(const hole_type& t) { return &t; }
- static inline std::size_t size_holes(const hole_type& t) { return 0; }
};
template <typename T>