Suppressed most warning (except some unused variables) if you don't modify anythig
This commit is contained in:
parent
d0d14c3ff8
commit
1d7b79b85a
2 changed files with 12 additions and 10 deletions
|
|
@ -46,15 +46,16 @@ public:
|
|||
*/
|
||||
bool operator()(GenotypeT & _genotype)
|
||||
{
|
||||
bool isModified;
|
||||
// START code for mutation of the _genotype object
|
||||
|
||||
/** Requirement
|
||||
* if _genotype has been modified
|
||||
* return true;
|
||||
* otherwise
|
||||
* return false;
|
||||
* if (_genotype has been modified)
|
||||
* isModified = true;
|
||||
* else
|
||||
* isModified = false;
|
||||
*/
|
||||
|
||||
return isModified;
|
||||
// END code for mutation of the _genotype object
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue