use error msg

This commit is contained in:
Sebastien Loriot 2023-10-03 14:37:01 +02:00 committed by GitHub
parent 95d11d45c6
commit 33a1d33690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ 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];
CGAL_assertion(!"invalid indices provided");
CGAL_error_msg("Invalid indices provided");
return 0;
}