fix pgcc warnings

This commit is contained in:
Sylvain Pion 2007-03-09 13:58:37 +00:00
parent bf0e32a0e5
commit ca68531c73
3 changed files with 3 additions and 3 deletions

View File

@ -1255,7 +1255,7 @@ BigFloat pow(const BigFloat& r, unsigned long n) {
if ((n % 2) == 1) // n is odd if ((n % 2) == 1) // n is odd
u *= x; u *= x;
} }
return u; //return u; // unreachable
} }
}//pow }//pow

View File

@ -143,7 +143,7 @@ Expr pow(const Expr& e, unsigned long n) {
if ((n % 2) == 1) // n is odd if ((n % 2) == 1) // n is odd
u *= x; u *= x;
} }
return u; //return u; // unreachable
} }
}//pow }//pow

View File

@ -81,7 +81,7 @@ Real pow(const Real& r, unsigned long n) {
if ((n % 2) == 1) // n is odd if ((n % 2) == 1) // n is odd
u *= x; u *= x;
} }
return u; //return u; // unreachable
} }
}//pow }//pow