mirror of https://github.com/CGAL/cgal
Fix warnings
```
Kernel_23/include/CGAL/Kernel/nearest_point_segment_3.h:86:26: warning: typedef ‘FT’ locally defined but not used [-Wunused-local-typedefs]
typedef typename K::FT FT;
^~
Kernel_23/include/CGAL/Kernel/nearest_point_triangle_3.h:176:26: warning: typedef ‘FT’ locally defined but not used [-Wunused-local-typedefs]
typedef typename K::FT FT;
^~
```
This commit is contained in:
parent
a44e21b8eb
commit
2d90c88b6a
|
|
@ -83,7 +83,6 @@ nearest_point_3(const typename K::Point_3& query,
|
||||||
const K& k)
|
const K& k)
|
||||||
{
|
{
|
||||||
typedef typename K::Point_3 Point_3;
|
typedef typename K::Point_3 Point_3;
|
||||||
typedef typename K::FT FT;
|
|
||||||
|
|
||||||
typename K::Construct_projected_point_3 projection =
|
typename K::Construct_projected_point_3 projection =
|
||||||
k.construct_projected_point_3_object();
|
k.construct_projected_point_3_object();
|
||||||
|
|
|
||||||
|
|
@ -173,7 +173,6 @@ nearest_point_3(const typename K::Point_3& origin,
|
||||||
const K& k)
|
const K& k)
|
||||||
{
|
{
|
||||||
typedef typename K::Point_3 Point_3;
|
typedef typename K::Point_3 Point_3;
|
||||||
typedef typename K::FT FT;
|
|
||||||
|
|
||||||
typename K::Construct_supporting_plane_3 supporting_plane =
|
typename K::Construct_supporting_plane_3 supporting_plane =
|
||||||
k.construct_supporting_plane_3_object();
|
k.construct_supporting_plane_3_object();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue