mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0033555: Foundation Classes - DEBUG macro leads to compile error
Removed incorrect parameter call when DEBUG macro is active
This commit is contained in:
parent
909976ae2e
commit
55a0d816cd
@ -492,10 +492,9 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
|||||||
#ifdef OCCT_DEBUG
|
#ifdef OCCT_DEBUG
|
||||||
if (BRepCheck_Trace(0) > 1) {
|
if (BRepCheck_Trace(0) > 1) {
|
||||||
TopTools_DataMapIteratorOfDataMapOfShapeInteger itt(MapOfShapeOrientation);
|
TopTools_DataMapIteratorOfDataMapOfShapeInteger itt(MapOfShapeOrientation);
|
||||||
Standard_Integer upper = MapOfShapeOrientation.NbBuckets();
|
|
||||||
std::cout << "La map shape Orientation :" << std::endl;
|
std::cout << "La map shape Orientation :" << std::endl;
|
||||||
for (; itt.More(); itt.Next()) {
|
for (; itt.More(); itt.Next()) {
|
||||||
PrintShape(itt.Key(), upper);
|
PrintShape(itt.Key());
|
||||||
}
|
}
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
}
|
}
|
||||||
@ -716,7 +715,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
|||||||
if (BRepCheck_Trace(0) > 3)
|
if (BRepCheck_Trace(0) > 3)
|
||||||
{
|
{
|
||||||
std::cout << "Fref : " ;
|
std::cout << "Fref : " ;
|
||||||
PrintShape(Fref, MapOfShapeOrientation.NbBuckets());
|
PrintShape(Fref);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -766,7 +765,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
|||||||
if (BRepCheck_Trace(0) > 3)
|
if (BRepCheck_Trace(0) > 3)
|
||||||
{
|
{
|
||||||
std::cout << " Fcur : " ;
|
std::cout << " Fcur : " ;
|
||||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
PrintShape(Fcur);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
for (edFcur.Init(Fcur, TopAbs_EDGE); edFcur.More(); edFcur.Next())
|
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);
|
Fcur.Orientation(orf);
|
||||||
std::cout << " Error : this face has been already examined " << std::endl;
|
std::cout << " Error : this face has been already examined " << std::endl;
|
||||||
std::cout << " Impossible to return it ";
|
std::cout << " Impossible to return it ";
|
||||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
PrintShape(Fcur);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return myOstat;
|
return myOstat;
|
||||||
@ -809,7 +808,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
|||||||
orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur);
|
orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur);
|
||||||
Fcur.Orientation(orf);
|
Fcur.Orientation(orf);
|
||||||
std::cout << " Resulting Fcur is returned : " ;
|
std::cout << " Resulting Fcur is returned : " ;
|
||||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
PrintShape(Fcur);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user