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

0029981: Coding - Clang 6.0 warning [-Wenum-compare-switch]

In implementation of DRAW command "mkplane", the case labels of the switch statement are corrected to use values of the enum matching the type of the switch argument.
This commit is contained in:
abv 2018-07-23 21:58:47 +03:00 committed by bugmaster
parent 27a4b067ff
commit 321659b075

View File

@ -201,16 +201,16 @@ static Standard_Integer mkplane(Draw_Interpretor& theDI, Standard_Integer n, con
case BRepBuilderAPI_FaceDone:
DBRep::Set(a[1],aMF.Face());
break;
case BRepLib_NoFace:
case BRepBuilderAPI_NoFace:
theDI << "Error. mkplane has been finished with \"No Face\" status.\n";
break;
case BRepLib_NotPlanar:
case BRepBuilderAPI_NotPlanar:
theDI << "Error. mkplane has been finished with \"Not Planar\" status.\n";
break;
case BRepLib_CurveProjectionFailed:
case BRepBuilderAPI_CurveProjectionFailed:
theDI << "Error. mkplane has been finished with \"Fail in projection curve\" status.\n";
break;
case BRepLib_ParametersOutOfRange:
case BRepBuilderAPI_ParametersOutOfRange:
theDI << "Error. mkplane has been finished with \"Parameters are out of range\" status.\n";
break;
default: