update doc for doxygen
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2385 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
17f4caa24e
commit
ff5f87cb10
1 changed files with 5 additions and 5 deletions
|
|
@ -127,12 +127,12 @@ public:
|
|||
* Write object. Called printOn since it prints the object _on_ a stream.
|
||||
* @param _os A std::ostream.
|
||||
*/
|
||||
void printOn(std::ostream& os) const {
|
||||
EO<Fitness>::printOn(os);
|
||||
os << ' ';
|
||||
os << N << ' ';
|
||||
void printOn(std::ostream& _os) const {
|
||||
EO<Fitness>::printOn(_os);
|
||||
_os << ' ';
|
||||
_os << N << ' ';
|
||||
for (unsigned int i = 0; i < N; i++)
|
||||
os << (*this)[i] << ' ';
|
||||
_os << (*this)[i] << ' ';
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue