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

@@ -87,6 +87,6 @@ GeomToStep_MakeBoundedSurface::GeomToStep_MakeBoundedSurface
const Handle(StepGeom_BoundedSurface) &
GeomToStep_MakeBoundedSurface::Value() const
{
StdFail_NotDone_Raise_if(!done == Standard_True,"");
StdFail_NotDone_Raise_if(!done, "");
return theBoundedSurface;
}