mirror of https://github.com/CGAL/cgal
no need to use boost::range_iterator
This commit is contained in:
parent
06cc350143
commit
8e801bbc80
|
|
@ -23,7 +23,6 @@
|
||||||
#include <CGAL/tuple.h>
|
#include <CGAL/tuple.h>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
//#include <boost/range.hpp>
|
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
|
|
@ -93,25 +92,5 @@ namespace CGAL {
|
||||||
}
|
}
|
||||||
} // 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
|
#endif // CGAL_ITERATOR_RANGE_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue