Salome HOME
#18963 Minimize compiler warnings
[modules/smesh.git] / src / SMESH_I / SMESH_Hypothesis_i.hxx
index af5102563014a8bbd02cdb9deca397030f541bdd..0fcc83ca82b0b8deafc303af62192831cdd44c1f 100644 (file)
@@ -131,10 +131,10 @@ public:
   // method used to convert variable parameters stored in an old study
   // into myMethod2VarParams. It should return a method name for an index of
   // variable parameters. Index is countered from zero
-  virtual std::string getMethodOfParameter(const int paramIndex, int nbVars) const { return ""; }
+  virtual std::string getMethodOfParameter(const int /*paramIndex*/, int /*nbVars*/) const { return ""; }
 
   // method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
-  virtual int getParamIndex(const TCollection_AsciiString& method, int nbVars) const { return -1; }
+  virtual int getParamIndex(const TCollection_AsciiString& /*method*/, int /*nbVars*/) const { return -1; }
 };
 
 // ======================================================
@@ -152,7 +152,7 @@ public:
   virtual std::string GetModuleName() = 0;
 
   // Check if an algorithm is applicable to a shape
-  virtual bool IsApplicable( const TopoDS_Shape &S, bool toCheckAll, int algoDim )
+  virtual bool IsApplicable( const TopoDS_Shape &S, bool /*toCheckAll*/, int algoDim )
   {
     return IsShapeOfDim( S, algoDim );
   }