diff --git a/src/BRepCheck/BRepCheck_Shell.cxx b/src/BRepCheck/BRepCheck_Shell.cxx index 1b9850abec..b0a6ea3875 100644 --- a/src/BRepCheck/BRepCheck_Shell.cxx +++ b/src/BRepCheck/BRepCheck_Shell.cxx @@ -492,10 +492,9 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update) #ifdef OCCT_DEBUG if (BRepCheck_Trace(0) > 1) { TopTools_DataMapIteratorOfDataMapOfShapeInteger itt(MapOfShapeOrientation); - Standard_Integer upper = MapOfShapeOrientation.NbBuckets(); std::cout << "La map shape Orientation :" << std::endl; for (; itt.More(); itt.Next()) { - PrintShape(itt.Key(), upper); + PrintShape(itt.Key()); } std::cout << std::endl; } @@ -716,7 +715,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update) if (BRepCheck_Trace(0) > 3) { std::cout << "Fref : " ; - PrintShape(Fref, MapOfShapeOrientation.NbBuckets()); + PrintShape(Fref); } #endif @@ -766,7 +765,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update) if (BRepCheck_Trace(0) > 3) { std::cout << " Fcur : " ; - PrintShape(Fcur, MapOfShapeOrientation.NbBuckets()); + PrintShape(Fcur); } #endif for (edFcur.Init(Fcur, TopAbs_EDGE); edFcur.More(); edFcur.Next()) @@ -794,7 +793,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update) Fcur.Orientation(orf); std::cout << " Error : this face has been already examined " << std::endl; std::cout << " Impossible to return it "; - PrintShape(Fcur, MapOfShapeOrientation.NbBuckets()); + PrintShape(Fcur); } #endif return myOstat; @@ -809,7 +808,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update) orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur); Fcur.Orientation(orf); std::cout << " Resulting Fcur is returned : " ; - PrintShape(Fcur, MapOfShapeOrientation.NbBuckets()); + PrintShape(Fcur); } #endif