mirror of https://github.com/CGAL/cgal
Don't use iterator_traits
This commit is contained in:
parent
2ac1b9632b
commit
fd28440927
|
|
@ -290,8 +290,9 @@ bounding_box_2(ForwardIterator f, ForwardIterator l, const Traits& t)
|
|||
return rect(v(rect(*xmin, *ymin), 0), v(rect(*xmax, *ymax), 2));
|
||||
} // bounding_box_2(f, l, t)
|
||||
template < class ForwardIterator >
|
||||
inline typename
|
||||
std::iterator_traits< ForwardIterator >::value_type::R::Iso_rectangle_2
|
||||
inline
|
||||
//typename std::iterator_traits< ForwardIterator >::value_type::R::Iso_rectangle_2
|
||||
decltype(auto)
|
||||
bounding_box_2(ForwardIterator f, ForwardIterator l)
|
||||
// PRE: f != l.
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue