Part: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:37:00 -05:00
parent 3ecd16e0bd
commit 2ecc125497
21 changed files with 150 additions and 75 deletions

View File

@@ -243,7 +243,8 @@ static Standard_Boolean BRepTools_Write(const TopoDS_Shape& Sh, const Standard_
#else
os.open(File, std::ios::out);
#endif
if (!os.rdbuf()->is_open()) return Standard_False;
if (!os.rdbuf()->is_open())
return Standard_False;
Standard_Boolean isGood = (os.good() && !os.eof());
if(!isGood)