mirror of https://github.com/CGAL/cgal
Use std::invoke_result and not result_type to get the return type
This commit is contained in:
parent
13842b219f
commit
a06a6a35b9
|
|
@ -59,9 +59,8 @@ namespace CGAL {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::remove_cv_t<
|
CGAL::cpp20::remove_cvref_t<std::invoke_result_t<Construct_min_vertex_d, Iso_box_d> > min;
|
||||||
std::remove_reference_t< typename Construct_min_vertex_d::result_type >
|
CGAL::cpp20::remove_cvref_t<std::invoke_result_t<Construct_max_vertex_d, Iso_box_d> > max;
|
||||||
> min, max;
|
|
||||||
Cartesian_const_iterator_d min_begin, max_begin;
|
Cartesian_const_iterator_d min_begin, max_begin;
|
||||||
FT eps;
|
FT eps;
|
||||||
unsigned int dim;
|
unsigned int dim;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue