Updated the src:: everywhere in eoVariableLengthCrossover.h eoFlOrMonOp.h
(that nobody seems to actually use btw :-)
This commit is contained in:
parent
558e197adc
commit
a17e266c46
2 changed files with 6 additions and 16 deletions
|
|
@ -65,12 +65,9 @@ public :
|
|||
}
|
||||
|
||||
/** inherited className() */
|
||||
virtual string className() const
|
||||
virtual std::string className() const
|
||||
{
|
||||
char s[1024];
|
||||
ostrstream os(s, 1022);
|
||||
os << "eoFlOrAllMutation(" << atomMutation.className() << ")";
|
||||
return string(s);
|
||||
return "eoFlOrAllMutation(" + atomMutation.className() + ")";
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
@ -107,12 +104,9 @@ public :
|
|||
}
|
||||
|
||||
/** inherited className() */
|
||||
virtual string className() const
|
||||
virtual std::string className() const
|
||||
{
|
||||
char s[1024];
|
||||
ostrstream os(s, 1022);
|
||||
os << "eoFlOrKMutation(" << atomMutation.className() << ")" << ends;
|
||||
return string(s);
|
||||
return "eoFlOrKMutation(" + atomMutation.className() + ")";
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue