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