fix(mo): comment out unused parameters

Removes -Wunused-parameters warnings.
This commit is contained in:
Johann Dreo 2022-09-10 06:26:34 +02:00
commit 843aa6fc37
69 changed files with 159 additions and 159 deletions

View file

@ -85,7 +85,7 @@ public:
*
* @param _solution the current solution
*/
virtual void operator()(EOT & _solution) {
virtual void operator()(EOT & /*_solution*/) {
}
/** the delta of fitness for each neighbors

View file

@ -46,7 +46,7 @@ public:
* @param _sol unused solution
* @param _n unused neighbor
*/
void operator()(EOT& _sol, Neighbor& _n) {}
void operator()(EOT& /*_sol*/, Neighbor& /*_n*/) {}
};