mirror of https://github.com/CGAL/cgal
fix pgcc warnings
This commit is contained in:
parent
bf0e32a0e5
commit
ca68531c73
|
|
@ -1255,7 +1255,7 @@ BigFloat pow(const BigFloat& r, unsigned long n) {
|
|||
if ((n % 2) == 1) // n is odd
|
||||
u *= x;
|
||||
}
|
||||
return u;
|
||||
//return u; // unreachable
|
||||
}
|
||||
}//pow
|
||||
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ Expr pow(const Expr& e, unsigned long n) {
|
|||
if ((n % 2) == 1) // n is odd
|
||||
u *= x;
|
||||
}
|
||||
return u;
|
||||
//return u; // unreachable
|
||||
}
|
||||
}//pow
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ Real pow(const Real& r, unsigned long n) {
|
|||
if ((n % 2) == 1) // n is odd
|
||||
u *= x;
|
||||
}
|
||||
return u;
|
||||
//return u; // unreachable
|
||||
}
|
||||
}//pow
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue