mirror of https://github.com/CGAL/cgal
Merge pull request #7907 from sloriot/T3-OFB_warning
Prevent out-of-bound warnings # Conflicts: # TDS_3/include/CGAL/Triangulation_utils_3.h
This commit is contained in:
commit
ca2d5ef58c
|
|
@ -80,6 +80,7 @@ struct Triangulation_utils_3
|
||||||
CGAL_precondition( ( i >= 0 && i < 4 ) &&
|
CGAL_precondition( ( i >= 0 && i < 4 ) &&
|
||||||
( j >= 0 && j < 4 ) &&
|
( j >= 0 && j < 4 ) &&
|
||||||
( i != j ) );
|
( i != j ) );
|
||||||
|
CGAL_assume(i!=j);
|
||||||
return tab_next_around_edge[i][j];
|
return tab_next_around_edge[i][j];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue