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

0025266: Debug statements in the source are getting flushed on to the console

Suppress remaining couts in packages explicitly mentioned in the original bug description

Correction of test cases for issue CR25266
This commit is contained in:
abv
2014-10-16 16:45:55 +04:00
parent a520f6eb9a
commit aefdc31bf0
24 changed files with 127 additions and 129 deletions

View File

@@ -929,7 +929,9 @@ Standard_Boolean ShapeAnalysis_CheckSmallFace::CheckTwisted (const TopoDS_Face&
}
catch (Standard_Failure)
{
cout << "Couldn't compute angle between derivative vectors" <<endl;
#ifdef SHAPEANALYSIS_DEB
cout << "Couldn't compute angle between derivative vectors" <<endl;
#endif
return Standard_False;
}
// cout << "angle1 " << angle1<< endl;

View File

@@ -541,7 +541,9 @@ void ShapeAnalysis_WireOrder::SetChains(const Standard_Real gap)
void ShapeAnalysis_WireOrder::SetCouples(const Standard_Real /*gap*/)
{
#ifdef SHAPEANALYSIS_DEB
cout<<"ShapeAnalysis_WireOrder:SetCouple not yet implemented"<<endl;
#endif
}
//=======================================================================