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

0032402: Coding Rules - eliminate msvc warning C4668 (symbol is not defined as a preprocessor macro, replacing with '0' for directive)

Make preprocessor expressions consistent with respect to guard expressions.

Fixed usage of macros __QNX__, IRIX, OCCT_DEBUG, DO_INVERSE, DRAW, CHFI3D_DEB by value.
Removed obsolete hack for Sun Workshop 5.0 compiler.
This commit is contained in:
zaphod
2021-05-30 12:27:19 +02:00
committed by bugmaster
parent d5477f8c82
commit ff1f0c9ae2
29 changed files with 102 additions and 111 deletions

View File

@@ -302,7 +302,7 @@ Handle(Geom2d_Curve) GeomPlate_BuildPlateSurface::ProjectCurve(const Handle(Ada
Curve2d = appr.Curve2d();
}
#if DRAW
#ifdef DRAW
if (Affich) {
char name[256];
sprintf(name,"proj_%d",++NbProj);
@@ -1652,7 +1652,7 @@ void GeomPlate_BuildPlateSurface::ComputeSurfInit(const Message_ProgressRange& t
if (! myIsLinear)
{
myPlanarSurfInit = mySurfInit;
#if DRAW
#ifdef DRAW
if (Affich) {
char name[256];
sprintf(name,"planinit_%d",NbPlan+1);
@@ -1750,7 +1750,7 @@ void GeomPlate_BuildPlateSurface::ComputeSurfInit(const Message_ProgressRange& t
}
}
#if DRAW
#ifdef DRAW
if (Affich) {
char name[256];
sprintf(name,"surfinit_%d",++NbPlan);
@@ -2447,7 +2447,7 @@ VerifSurface(const Standard_Integer NbBoucle)
diffDistMax = diffDist;
SdiffDist+=diffDist;
NdiffDist++;
#if DRAW
#ifdef DRAW
if ((Affich) && (NbBoucle == myNbIter)) {
gp_Pnt P;
gp_Pnt2d P2d;
@@ -2479,7 +2479,7 @@ VerifSurface(const Standard_Integer NbBoucle)
diffAngMax = diffAng;
SdiffAng+=diffAng;
NdiffAng++;
#if DRAW
#ifdef DRAW
if ((Affich) && (NbBoucle == myNbIter)) {
gp_Pnt P;
LinCont->D0(U,P);