mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-2966 remove unused code
X-SVN-Rev: 13013
This commit is contained in:
parent
d772506fbd
commit
8c2fb6ca1d
1 changed files with 0 additions and 7 deletions
|
@ -16,13 +16,6 @@ int32_t Math::floorDivide(int32_t numerator, int32_t denominator) {
|
|||
numerator / denominator : ((numerator + 1) / denominator) - 1;
|
||||
}
|
||||
|
||||
double Math::floorDivide(double numerator, double denominator,
|
||||
double& remainder) {
|
||||
double quotient = uprv_floor(numerator / denominator);
|
||||
remainder = numerator - (quotient * denominator);
|
||||
return quotient;
|
||||
}
|
||||
|
||||
int32_t Math::floorDivide(double numerator, int32_t denominator,
|
||||
int32_t& remainder) {
|
||||
double quotient;
|
||||
|
|
Loading…
Add table
Reference in a new issue