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

0024893: CLang warnings -Wlogical-not-parentheses for gce_Done comparisons

Incorrect comparison in condition within RiseIf macro fixed
This commit is contained in:
abv
2014-05-03 08:58:18 +04:00
committed by bugmaster
parent 7ccd27ca04
commit 82fc327c7d
39 changed files with 39 additions and 39 deletions

View File

@@ -59,7 +59,7 @@ GCE2d_MakeEllipse::GCE2d_MakeEllipse(const gp_Pnt2d& S1 ,
const Handle(Geom2d_Ellipse)& GCE2d_MakeEllipse::Value() const
{
StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
StdFail_NotDone_Raise_if(TheError != gce_Done,"");
return TheEllipse;
}