mirror of https://github.com/CGAL/cgal
fix 2 warnings
This commit is contained in:
parent
03b459c8a4
commit
4d110d39ce
|
|
@ -458,8 +458,6 @@ private:
|
||||||
// Some convenient typedefs.
|
// Some convenient typedefs.
|
||||||
typedef std::vector<FT> Coordinate_vector;
|
typedef std::vector<FT> Coordinate_vector;
|
||||||
|
|
||||||
typedef std::back_insert_iterator<Coordinate_vector> Vector_insert_iterator;
|
|
||||||
|
|
||||||
// Create a coordinate vector.
|
// Create a coordinate vector.
|
||||||
Coordinate_vector coordinate;
|
Coordinate_vector coordinate;
|
||||||
coordinate.reserve(2);
|
coordinate.reserve(2);
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,7 @@ tetrahedron_coordinates(
|
||||||
|
|
||||||
using GeomTraits = typename Kernel_traits<Point_3>::Kernel;
|
using GeomTraits = typename Kernel_traits<Point_3>::Kernel;
|
||||||
const GeomTraits traits;
|
const GeomTraits traits;
|
||||||
return tetrahedron_coordinates(
|
return tetrahedron_coordinates<GeomTraits>(
|
||||||
p0, p1, p2, p3, query, traits);
|
p0, p1, p2, p3, query, traits);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue