1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0033390: Coding - Debug version of OCCT does not compile

Deleted code for OCCT_DEBUG was returned and added under macros OCCT_DEBUG
This commit is contained in:
akaftasev 2023-05-22 12:00:32 +01:00
parent 92e0a76a50
commit 8748042259

View File

@ -154,6 +154,7 @@ Standard_Integer Poly_MakeLoops::Perform()
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
if (doDebug) if (doDebug)
showBoundaryBreaks(); showBoundaryBreaks();
Standard_Integer aNbLoopsOnPass2 = 0;
#endif #endif
Standard_Integer aResult = 0; Standard_Integer aResult = 0;
@ -191,6 +192,10 @@ Standard_Integer Poly_MakeLoops::Perform()
if (aStartNumber <= aContour.Extent()) if (aStartNumber <= aContour.Extent())
{ {
// there is a closed loop in the contour // there is a closed loop in the contour
#ifdef OCCT_DEBUG
if (aPassNum == 1)
aNbLoopsOnPass2++;
#endif
acceptContour (aContour, aStartNumber); acceptContour (aContour, aStartNumber);
} }
if (aStartNumber > 1) if (aStartNumber > 1)
@ -219,8 +224,8 @@ Standard_Integer Poly_MakeLoops::Perform()
} }
} }
#ifdef OCCT_DEBUG #ifdef OCCT_DEBUG
if (doDebug && nbLoopsOnPass2) if (doDebug && aNbLoopsOnPass2)
std::cout << "MakeLoops: " << nbLoopsOnPass2 std::cout << "MakeLoops: " << aNbLoopsOnPass2
<< " contours accepted on the second pass" << std::endl; << " contours accepted on the second pass" << std::endl;
#endif #endif