remove useless tuple

This commit is contained in:
Jane Tournois 2024-06-07 17:37:34 +02:00
parent 986b596d10
commit 7be4da73a3
1 changed files with 0 additions and 5 deletions

View File

@ -20,7 +20,6 @@
#include <utility> // std::swap #include <utility> // std::swap
#include <algorithm> // std::min #include <algorithm> // std::min
#include <CGAL/tuple.h>
#include <CGAL/Image_3.h> #include <CGAL/Image_3.h>
#include <CGAL/number_utils.h> #include <CGAL/number_utils.h>
#include <CGAL/squared_distance_3.h> #include <CGAL/squared_distance_3.h>
@ -515,11 +514,7 @@ polylines_to_protect
for(int j = 0; j < ydim; j+= (axis == 1 ? (std::max)(1, ydim-1) : 1 ) ) for(int j = 0; j < ydim; j+= (axis == 1 ? (std::max)(1, ydim-1) : 1 ) )
for(int k = 0; k < zdim; k+= (axis == 2 ? (std::max)(1, zdim-1) : 1 ) ) for(int k = 0; k < zdim; k+= (axis == 2 ? (std::max)(1, zdim-1) : 1 ) )
{ {
using std::array; using std::array;
using std::tuple;
using std::get;
typedef array<int, 3> Pixel; typedef array<int, 3> Pixel;
#ifdef CGAL_MESH_3_DEBUG_POLYLINES_TO_PROTECT #ifdef CGAL_MESH_3_DEBUG_POLYLINES_TO_PROTECT