Skip to content

Commit

Permalink
Merge pull request #7753 from sloriot/TR3-fix_opti_warning
Browse files Browse the repository at this point in the history
Fix warning
  • Loading branch information
lrineau committed Oct 16, 2023
2 parents fbc0e18 + 33a1d33 commit 3575673
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ inline int indices(const int& i, const int& j)
CGAL_assertion(i < 4 && j < 3);
if(i < 4 && j < 3)
return indices_table[i][j];
else
return -1;
CGAL_error_msg("Invalid indices provided");
return 0;
}

template<typename Gt, typename Point>
Expand Down

0 comments on commit 3575673

Please sign in to comment.