1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0024209: Cppcheck errors "unusedScopedObject"

Fixed bug with temporary objects.
This commit is contained in:
omy
2013-12-24 10:13:13 +04:00
committed by bugmaster
parent 96a95605cd
commit b3a7aa39a1
6 changed files with 10 additions and 10 deletions

View File

@@ -585,8 +585,8 @@ void Poly_CoherentTriangulation::RemoveLink (Poly_CoherentLink& theLink)
else if (iNode == pTri[i]->Node(2))
const_cast<Poly_CoherentTriangle *>(pTri[i])->mypLink[2] = 0L;
else
Standard_ProgramError("Poly_CoherentTriangulation::RemoveLink: "
" wrong connectivity between triangles");
Standard_ProgramError::Raise("Poly_CoherentTriangulation::RemoveLink: "
" wrong connectivity between triangles");
}
}
}
@@ -660,8 +660,8 @@ Standard_Boolean Poly_CoherentTriangulation::FindTriangle
else if (aTri.Node(1) == theLink.Node(1))
pTri[1] = &aTri;
} else
Standard_ProgramError("Poly_CoherentTriangulation::FindTriangle : "
" Data incoherence detected");
Standard_ProgramError::Raise("Poly_CoherentTriangulation::FindTriangle : "
" Data incoherence detected");
if (pTri[0] && pTri[1])
break;
}