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

0026167: Coding rules - eliminate -Wlogical-not-parentheses CLang warnings in GeomToStep

This commit is contained in:
kgv
2015-04-30 13:26:01 +03:00
committed by bugmaster
parent 0df8756310
commit 11bf7051d9
30 changed files with 30 additions and 30 deletions

View File

@@ -121,6 +121,6 @@ GeomToStep_MakeBoundedCurve::GeomToStep_MakeBoundedCurve ( const Handle(Geom2d_B
const Handle(StepGeom_BoundedCurve) &
GeomToStep_MakeBoundedCurve::Value() const
{
StdFail_NotDone_Raise_if(!done == Standard_True,"");
StdFail_NotDone_Raise_if(!done, "");
return theBoundedCurve;
}