Merge pull request #7753 from sloriot/TR3-fix_opti_warning

Fix warning
This commit is contained in:
Laurent Rineau 2023-10-16 10:50:13 +02:00
commit d663c68b8a
1 changed files with 2 additions and 2 deletions

View File

@ -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>