Revert "prevent out-of-bound warnings"

This reverts commit b87ecf7aab.
This commit is contained in:
Sébastien Loriot 2023-12-05 11:18:13 +01:00
parent b87ecf7aab
commit 3ebe548cad
1 changed files with 4 additions and 4 deletions

View File

@ -35,10 +35,10 @@ struct Triangulation_utils_base_3
template < class T >
const char Triangulation_utils_base_3<T>::tab_next_around_edge[4][4] = {
{-0, 2, 3, 1},
{3, -0, 0, 2},
{1, 3, -0, 0},
{2, 0, 1, -0} };
{5, 2, 3, 1},
{3, 5, 0, 2},
{1, 3, 5, 0},
{2, 0, 1, 5} };
template < class T >
const int Triangulation_utils_base_3<T>::tab_vertex_triple_index[4][3] = {