remove unused variable

This commit is contained in:
Sébastien Loriot 2023-08-09 09:00:38 +02:00
parent 99066b4363
commit 71347f28a8
1 changed files with 0 additions and 1 deletions

View File

@ -165,7 +165,6 @@ void test_bool_op_no_copy(
assert( count_constrained_edges(tm2, ecm2)==307 );
typedef std::optional<Triangle_mesh*> OTM;
Triangle_mesh *ptr = nullptr;
const std::array<OTM,4> output =
reverse ? CGAL::make_array(OTM(&tm2), OTM(&tm1), std::optional<Triangle_mesh*>(), std::optional<Triangle_mesh*>())
: CGAL::make_array(OTM(&tm1), OTM(&tm2), std::optional<Triangle_mesh*>(), std::optional<Triangle_mesh*>());