Salome HOME
fight warnings, c++17. additional corrections
[modules/smesh.git] / src / SMESH / SMESH_Algo.hxx
index 6b5b4904ab5ed734b62e6e5041a9585106026931..72c17b7f972d7de7360c7a492ec366cae927daa8 100644 (file)
@@ -173,7 +173,7 @@ class SMESH_EXPORT SMESH_Algo : public SMESH_Hypothesis
    *              else, returns OK if at least one shape is OK
    *  \retval bool - \c true by default
    */
-  virtual bool IsApplicableToShape(const TopoDS_Shape & /*shape*/, bool /*toCheckAll*/) const;
+  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const;
 
   /*!
    * \brief Sets _computeCanceled to true. It's usage depends on
@@ -480,7 +480,7 @@ public:
    *              else, returns OK if at least one shape is OK
    *  \retval bool - \c true by default
    */
-  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const;
+  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const;
 };
 
 class SMESH_EXPORT SMESH_2D_Algo: public SMESH_Algo
@@ -494,7 +494,7 @@ public:
    *              else, returns OK if at least one shape is OK
    *  \retval bool - \c true by default
    */
-  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const;
+  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const;
   /*!
    * \brief Method in which an algorithm generating a structured mesh
    *        fixes positions of in-face nodes after there movement
@@ -515,7 +515,7 @@ public:
    *              else, returns OK if at least one shape is OK
    *  \retval bool - \c true by default
    */
-  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const;
+  virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const;
 };
 
 #endif