]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix warning on inaccessible line of code
authorazv <azv@opencascade.com>
Thu, 20 Dec 2018 05:27:46 +0000 (08:27 +0300)
committerazv <azv@opencascade.com>
Thu, 20 Dec 2018 05:27:46 +0000 (08:27 +0300)
src/GeomAlgoAPI/GeomAlgoAPI_ConeSegment.cpp

index 36111ca5aefded92af43ebba11c45fae7aa4f917..cd05c49e8fede37a29822921bf2f7fda8e486468 100644 (file)
@@ -142,8 +142,8 @@ void GeomAlgoAPI_ConeSegment::build()
   BRepPrimAPI_MakeRevol* aRevolBuilder =
     new BRepPrimAPI_MakeRevol(aFaceBuilder.Face(), aZAxis, myDeltaPhi * M_PI/180., Standard_True);
   if(!aRevolBuilder) {
-    return;
     myError = "Cone Segment builder :: section revolution did not succeed";
+    return;
   }
   if(!aRevolBuilder->IsDone()) {
     myError = "Cone Segment builder :: section revolution did not succeed";