Salome HOME
fight warnings, c++17. additional corrections
[modules/smesh.git] / src / SMESH_I / SMESH_Algo_i.hxx
index 03a8c8e794de09f0ea3f395cc14d35c24e40057d..0b07cc772815ddd5403862679a2ae6f78200b456 100644 (file)
@@ -56,12 +56,12 @@ public:
 
 
   // 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;
+  virtual bool getObjectsDependOn( std::vector< std::string > & entryArray,
+                                   std::vector< int >         & subIDArray ) const;
 
   // Set new geometry instead of that returned by getObjectsDependOn()
-  virtual bool setObjectsDependOn( std::vector< std::string > & /*entryArray*/,
-                                   std::vector< int >         & /*subIDArray*/ );
+  virtual bool setObjectsDependOn( std::vector< std::string > & entryArray,
+                                   std::vector< int >         & subIDArray );
 };
 
 #endif