Avoid generating documentation on undocumented sources.

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1474 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
fatene 2009-03-05 10:33:51 +00:00
commit 8f499ab64e
5 changed files with 77 additions and 53 deletions

View file

@ -246,12 +246,6 @@ template< class EOT > void peoPopEval< EOT > :: unpackResult()
{
long int __fit; unpack( __fit );fit = __fit;
}
/*
if ( type[position] == types[3])
{
long long int __fit; unpack( __fit );fit = __fit;
}
* */
if ( type[position] == types[4])
{
unsigned int __fit; unpack( __fit );fit = __fit;
@ -264,12 +258,6 @@ template< class EOT > void peoPopEval< EOT > :: unpackResult()
{
unsigned long __fit; unpack( __fit );fit = __fit;
}
/*
if ( type[position] == types[7])
{
unsigned long long __fit; unpack( __fit );fit = __fit;
}
*/
if ( type[position] == types[8])
{
float __fit; unpack( __fit );fit = __fit;
@ -278,12 +266,6 @@ template< class EOT > void peoPopEval< EOT > :: unpackResult()
{
double __fit; unpack( __fit );fit = __fit;
}
/*
if ( type[position] == types[10])
{
long double __fit; unpack( __fit );fit = __fit;
}
*/
}