Salome HOME
#18963 Minimize compiler warnings
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_LocalLength_i.hxx
index a8e18238bf39940273b86d8e22cb2396138fb744..b98f696f39a9a139400f1eceeb41e7625d869383 100644 (file)
@@ -54,11 +54,9 @@ public:
   virtual ~StdMeshers_LocalLength_i();
 
   // Set length
-  void SetLength( CORBA::Double theLength )
-    throw ( SALOME::SALOME_Exception );
+  void SetLength( CORBA::Double theLength );
   // Set precision
-  void SetPrecision( CORBA::Double thePrecision )
-    throw ( SALOME::SALOME_Exception );
+  void SetPrecision( CORBA::Double thePrecision );
 
   // Get length
   CORBA::Double GetLength();
@@ -76,12 +74,12 @@ public:
   // Methods for copying mesh definition to other geometry
 
   // Return geometry this hypothesis depends on. Return false if there is no geometry parameter
-  virtual bool getObjectsDependOn( std::vector< std::string > & entryArray,
-                                   std::vector< int >         & subIDArray ) const { return 0; }
+  virtual bool getObjectsDependOn( std::vector< std::string > & /*entryArray*/,
+                                   std::vector< int >         & /*subIDArray*/ ) const { return 0; }
 
   // Set new geometry instead of that returned by getObjectsDependOn()
-  virtual bool setObjectsDependOn( std::vector< std::string > & entryArray,
-                                   std::vector< int >         & subIDArray ) { return true; }
+  virtual bool setObjectsDependOn( std::vector< std::string > & /*entryArray*/,
+                                   std::vector< int >         & /*subIDArray*/ ) { return true; }
  protected:
   virtual std::string getMethodOfParameter(const int paramIndex, int nbVars) const;
 };