no need to use boost::range_iterator

This commit is contained in:
Andreas Fabri 2015-01-19 09:00:21 +01:00
parent 06cc350143
commit 8e801bbc80
1 changed files with 0 additions and 21 deletions

View File

@ -23,7 +23,6 @@
#include <CGAL/tuple.h>
#include <utility>
//#include <boost/range.hpp>
namespace CGAL {
@ -93,25 +92,5 @@ namespace CGAL {
}
} // namespace CGAL
namespace boost {
template <typename T>
struct range_iterator<CGAL::Iterator_range<T> >
{
typedef T type;
};
template<typename T>
struct range_mutable_iterator< CGAL::Iterator_range<T> >
{
typedef T type;
};
template<typename T>
struct range_const_iterator< CGAL::Iterator_range<T> >
{
typedef T type;
};
}
#endif // CGAL_ITERATOR_RANGE_H