1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Coding - GCC13 warning suppressing #96

This commit is contained in:
dpasukhi
2024-10-12 16:26:32 +00:00
parent 858709699a
commit 55527ad756
6 changed files with 24 additions and 10 deletions

View File

@@ -1042,9 +1042,9 @@ static Standard_Integer veriftriangles(Draw_Interpretor& di, Standard_Integer n,
else
T->Triangle (i).Get (n1,n2,n3);
const gp_XY& xy1 = T->UVNode (n1).XY();
const gp_XY& xy2 = T->UVNode (n2).XY();
const gp_XY& xy3 = T->UVNode (n3).XY();
const gp_Pnt2d xy1 = T->UVNode (n1);
const gp_Pnt2d xy2 = T->UVNode (n2);
const gp_Pnt2d xy3 = T->UVNode (n3);
mi2d1.SetCoord((xy2.X()+xy3.X())*0.5,
(xy2.Y()+xy3.Y())*0.5);