mirror of https://github.com/CGAL/cgal
prevent out-of-bound warnings
This commit is contained in:
parent
8ee8f27d45
commit
b87ecf7aab
|
|
@ -35,10 +35,10 @@ struct Triangulation_utils_base_3
|
||||||
|
|
||||||
template < class T >
|
template < class T >
|
||||||
const char Triangulation_utils_base_3<T>::tab_next_around_edge[4][4] = {
|
const char Triangulation_utils_base_3<T>::tab_next_around_edge[4][4] = {
|
||||||
{5, 2, 3, 1},
|
{-0, 2, 3, 1},
|
||||||
{3, 5, 0, 2},
|
{3, -0, 0, 2},
|
||||||
{1, 3, 5, 0},
|
{1, 3, -0, 0},
|
||||||
{2, 0, 1, 5} };
|
{2, 0, 1, -0} };
|
||||||
|
|
||||||
template < class T >
|
template < class T >
|
||||||
const int Triangulation_utils_base_3<T>::tab_vertex_triple_index[4][3] = {
|
const int Triangulation_utils_base_3<T>::tab_vertex_triple_index[4][3] = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue