fix(mo): comment out unused parameters
Removes -Wunused-parameters warnings.
This commit is contained in:
parent
1a980c442d
commit
843aa6fc37
69 changed files with 159 additions and 159 deletions
|
|
@ -106,7 +106,7 @@ public:
|
|||
* terminate: NOTHING TO DO
|
||||
* @param _solution a solution (unused)
|
||||
*/
|
||||
virtual void terminate(EOT & _solution) {};
|
||||
virtual void terminate(EOT & /*_solution*/) {};
|
||||
|
||||
/**
|
||||
* Perturb and apply local search on a solution
|
||||
|
|
@ -135,7 +135,7 @@ public:
|
|||
* @param _solution the solution
|
||||
* @return always true
|
||||
*/
|
||||
virtual bool isContinue(EOT & _solution) {
|
||||
virtual bool isContinue(EOT & /*_solution*/) {
|
||||
return true;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue