Salome HOME
updated copyright message
[modules/shaper.git] / src / GeomAPI / GeomAPI_Tools.cpp
index 66756005c91b67a22a90910a1d8631f268444f6a..68c56e1d7f77d7e6234e19982036869ee5102bcb 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -32,8 +32,6 @@ GeomShapePtr GeomAPI_Tools::getTypedShape(const GeomShapePtr& theShape)
 
   GeomShapePtr aTypedShape = theShape;
 
-  GeomAPI_Shape::ShapeType aType = theShape->shapeType();
-
   switch (theShape->shapeType()) {
   case GeomAPI_Shape::VERTEX:
     aTypedShape = GeomShapePtr(new GeomAPI_Vertex(theShape));
@@ -47,6 +45,8 @@ GeomShapePtr GeomAPI_Tools::getTypedShape(const GeomShapePtr& theShape)
   case GeomAPI_Shape::WIRE:
     aTypedShape = GeomShapePtr(new GeomAPI_Wire(theShape));
     break;
+  default:
+    break;
   }
 
   return aTypedShape;