Skip to content

Commit

Permalink
Deal with duplicate lines
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Aug 6, 2024
1 parent 847df9a commit ff89ba0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ class Periodic_3_regular_triangulation_3

CGAL_assertion(this->int_to_off(offsets[i])[0] == 0 || this->int_to_off(offsets[i])[0] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[1] == 0 || this->int_to_off(offsets[i])[1] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[1] == 0 || this->int_to_off(offsets[i])[1] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[2] == 0 || this->int_to_off(offsets[i])[2] == 1);
}

c->set_offsets(offsets[0], offsets[1], offsets[2], offsets[3]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ namespace CGAL {
ConstraintIterator first,
ConstraintIterator beyond)
{
typedef typename T::Point Point;
typedef typename T::Point Point;
std::vector<Point> points;
for (ConstraintIterator s_it=first; s_it!=beyond; ++s_it)
Expand Down

0 comments on commit ff89ba0

Please sign in to comment.